запросить 3 числа (a,b,c) ,если первое четное ,второе больше 0 ,а третье кратно 5, то найти сумму этих чисел,иначе каждое из низ увеличить в 2 раза.
Answers & Comments
tolikkkk1
На C# со скриншотами с результатом. Console.WriteLine("Введите А");
int a = Convert.ToInt16(Console.ReadLine());
Console.WriteLine("Введите Б");
int b = Convert.ToInt16(Console.ReadLine());
Console.WriteLine("Введите В");
int c = Convert.ToInt16(Console.ReadLine()); int x=0;
if (a % 2 == 0 && b > 0 && c % 5 == 0) { x = a + b + c; Console.WriteLine("---------------------------"); Console.WriteLine(a + "+" + b + "+" + c + "=" + x); } else { Console.WriteLine("---------------------------");
Console.WriteLine("a=" + a * 2 + "; b=" + b * 2 + "; c=" + c * 2); }
Answers & Comments
Console.WriteLine("Введите А");
int a = Convert.ToInt16(Console.ReadLine());
Console.WriteLine("Введите Б");
int b = Convert.ToInt16(Console.ReadLine());
Console.WriteLine("Введите В");
int c = Convert.ToInt16(Console.ReadLine());
int x=0;
if (a % 2 == 0 && b > 0 && c % 5 == 0) {
x = a + b + c;
Console.WriteLine("---------------------------");
Console.WriteLine(a + "+" + b + "+" + c + "=" + x); }
else { Console.WriteLine("---------------------------");
Console.WriteLine("a=" + a * 2 + "; b=" + b * 2 + "; c=" + c * 2); }
Console.WriteLine("---------------------------");
Console.ReadLine();