C#: Create string represented product of two non-negative integers
Write a C# program to return the string representation of the product of two non-negative integers n1 and n2, given two non-negative integers n1 and n2.
Sample Solution:
C# Sharp Code:
Sample Output:
Non-negative integer1(string) = 12, Non-negative integer2(string) = 5 Product = 60 Non-negative integer1(string) = 221, Non-negative integer2(string) = 415 Product = 91715 Non-negative integer1(string) = 0, Non-negative integer2(string) = 15 Product = 0
Flowchart:

C# Sharp Code Editor:
Improve this sample solution and post your code through Disqus
Previous: Write a C# program to divide two given integers (dividend and divisor) and get the quotient without using multiplication, division and mod operator.
Next: Write a C# Sharp program to compute the sum of the positive and negative numbers of an array of integers and display the largest sum.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.