Math

16 0 0
                                    

Calculator:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

Namespace Calculator
{
class Program
{
static void Main(string[] args)
{
Int num1;
Int num2;

Console.Write("Type here the first number to be multiplied: ");
Console.readline();
Int num1 = Convert.toint32(Console.readline())
Console.Write("Type here the second number to be multiplied: ");
Console.readline();
Int num2 = Convert.toint32(console.readline());
Console.writeline(num1 " multiplied with " num2 "=" + num1*num2);
Console.readkey();
}
}
}

You've reached the end of published parts.

⏰ Last updated: Feb 08, 2017 ⏰

Add this story to your Library to get notified about new parts!

Codes in c#Where stories live. Discover now