C#:
дано дійсні числа a, b, c. знайдіть суму тих, що належать до інтервалу [x; y]

саша4275 саша4275    3   01.01.2020 16:56    0

Ответы
Ника5324 Ника5324  10.10.2020 23:44

Console.WriteLine("Введіть a: ");

int a = Console.ReadLine();

Console.WriteLine("Введіть b: ");

int b = Console.ReadLine();

Console.WriteLine("Введіть c: ");

int c = Console.ReadLine();

Console.WriteLine("Введіть x: ");

int x = Console.ReadLine();

Console.WriteLine("Введіть y: ");

int y = Console.ReadLine();

if(x>y){

int x = temp;

x = y;

y = temp;

}

int sum = 0;

if(a>x && a<y){

sum = sum+a;

}

if(b>x && b<y){

sum = sum+b;

}

if(c>x && c<y){

sum = sum+c;

}

Console.WriteLine("Сума");

Console.WriteLine(sum);

ПОКАЗАТЬ ОТВЕТЫ
Другие вопросы по теме Информатика