123456789101112131415161718192021222324252627282930 |
- using System;
- namespace MyProject
- {
- class Program
- {
- static void Main(string[] args)
- {
- Console.WriteLine("Введите число 1");
- string str = Console.ReadLine();
- int a = Convert.ToInt32(str);
- Console.WriteLine("Введите число 2");
- string str2 = Console.ReadLine();
- int b = Convert.ToInt32(str2);
- Console.WriteLine("Введите число 3");
- string str3 = Console.ReadLine();
- int c = Convert.ToInt32(str3);
- int sum = a + b + c;
- int quotient = a * b * c;
- Console.WriteLine("Сумма этих чисел равна " + sum);
- Console.WriteLine("Частное этих чисел равно " + quotient);
- Console.ReadLine();
- }
- }
- }
|