Даны целые числа a, b, c. Проверить истинность высказывания: «Существует треугольник со сторонами a, b, c».
Console.WriteLine("Введите а");
int a, b, c;
a = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Введите b");
b = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Введите c");
c = Convert.ToInt32(Console.ReadLine());
if (a+b>c && a+c>b && b+c>a)
Console.WriteLine("True");
else
Console.WriteLine("False");
Console.ReadLine();
Console.WriteLine("Введите а");
int a, b, c;
a = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Введите b");
b = Convert.ToInt32(Console.ReadLine());
Console.WriteLine("Введите c");
c = Convert.ToInt32(Console.ReadLine());
if (a+b>c && a+c>b && b+c>a)
Console.WriteLine("True");
else
Console.WriteLine("False");
Console.ReadLine();
Комментариев нет:
Отправить комментарий
Примечание. Отправлять комментарии могут только участники этого блога.