Home
О нас
Products
Services
Регистрация
Войти
Поиск
Сени2014
@Сени2014
July 2022
1
10
Report
Сделайте пожалуйста четвертое задание) Если можно то в КуМир или на паскале
Please enter comments
Please enter your name.
Please enter the correct email address.
Agree to
terms of service
You must agree before submitting.
Send
Answers & Comments
petyaGavrikov
Verified answer
Var a,b,c : real;
begin
writeln('a=');
readln(a);
writeln('b=');
readln(b);
writeln('c=');
readln(c);
if (a+b>c) and (a+c>b) and (b+c>a)
then writeln('Треугольник существует')
else writeln('Треугольника не существует');
end.
Пример:
a= 3
b= 4
c= 5
Треугольник существует
2 votes
Thanks 1
×
Report "Сделайте пожалуйста четвертое задание) Если можно то в КуМир или на паскале..."
Your name
Email
Reason
-Select Reason-
Pornographic
Defamatory
Illegal/Unlawful
Spam
Other Terms Of Service Violation
File a copyright complaint
Description
Helpful Links
О нас
Политика конфиденциальности
Правила и условия
Copyright
Контакты
Helpful Social
Get monthly updates
Submit
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Verified answer
Var a,b,c : real;begin
writeln('a=');
readln(a);
writeln('b=');
readln(b);
writeln('c=');
readln(c);
if (a+b>c) and (a+c>b) and (b+c>a)
then writeln('Треугольник существует')
else writeln('Треугольника не существует');
end.
Пример:
a= 3
b= 4
c= 5
Треугольник существует