Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as C# by Max ( 8 years ago )
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace multiplication
{
class Program
{
static void Main(string[] args)
{
Console.Write("Добро пожаловать!\nВведите первое чиcло:");
int firstNumber = Convert.ToInt32(Console.ReadLine());
Console.Write("Введите второе чиcло:");
int secondNumber = Convert.ToInt32(Console.ReadLine());
Console.Write("Результат:" + firstNumber + "*" + secondNumber + "=" + (firstNumber*secondNumber));
Console.Write("\nДля закрытия нажмите любую клавишу");
Console.ReadKey();
}
}
}
Revise this Paste
Children: 90163