1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- /* int a, b;
- Console.WriteLine("Введите число А");
- a = int.Parse(Console.ReadLine());
- Console.WriteLine("Введите число B");
- b = int.Parse(Console.ReadLine());
- Console.WriteLine("Сумма чисел равна ");
- Console.Write(a + b); */
-
- /*int a, b, c;
- Console.Write("Введите число от 0 до 10:");
- a = int.Parse(Console.ReadLine());
- if (a >= 11)
- {
- Console.WriteLine("Число введено неверно ");
- return;
- }
- Console.Write("Введите число от 0 до 10:");
- b = int.Parse(Console.ReadLine());
- if (b >= 11)
- {
- Console.WriteLine("Число введено неверно ");
- return;
- }
- c = (a + b) - 1;
- int one = c - a;
- int two = c - b;
- Console.WriteLine("Ответ = " + one + " " + two);*/
- /* int num1, num2;
- Console.WriteLine("Введите число А");
- num1 = int.Parse(Console.ReadLine());
- Console.WriteLine("Введите число B");
- num2 = int.Parse(Console.ReadLine());
- if (num1 >= num2)
- {
- Console.WriteLine("Число A оказалось больше ");
- Console.WriteLine(">");
- }
- else if (num1 <= num2)
- {
- Console.WriteLine("Число B оказалось больше ");
- Console.WriteLine("<");
- }
- if (num1 == num2)
- {
- Console.WriteLine("Число B и A оказались одинаковыми ");
- Console.WriteLine("=");
- }
- */
- /* int a, b, c, f;
- Console.Write("Введите число А");
- a = int.Parse(Console.ReadLine());
- Console.WriteLine("Введите число B");
- b = int.Parse(Console.ReadLine());
- Console.Write("Введите число C ");
- c = int.Parse(Console.ReadLine());
- Console.Write("Введите число B ");
- f = int.Parse(Console.ReadLine());
-
- Console.WriteLine(f + " " + c + " " + " " + b);*/
-
- /*int a, b, c, f, s = 16;
- Console.Write("Введите длинну стены ");
- a = int.Parse(Console.ReadLine());
- Console.Write("Введите ширину стены ");
- b = int.Parse(Console.ReadLine());
- Console.Write("Введите высоту стены ");
- c = int.Parse(Console.ReadLine());
-
- f = (a * c) * 2 + (b * c) * 2;
- Console.WriteLine( f/s + " банок красок необходимо");*/
|