Зробити блок-схему програми за цим кодом на

Сайт де ви можете її це: creately.com

(програма на мові C++):

#include

int is_triangle(float a, float b, float c) {
if (a + b > c && a + c > b && b + c > a) {
return 1; // Повертаємо 1, якщо трикутник існує
}
else {
return 0; // Повертаємо 0, якщо трикутник не існує
}
}

int main() {
float a, b, c;

// Введення довжин сторін трикутника
printf("Enter the length of the side a: "); //Введіть довжину сторони a
scanf_s("%f", &a);
printf("Enter the length of side b: "); //Введіть довжину сторони b
scanf_s("%f", &b);
printf("Enter the length of side c: "); //Введіть довжину сторони c
scanf_s("%f", &c);

// Перевірка, чи існує трикутник з заданими сторонами
if (is_triangle(a, b, c)) {
printf("triangle is real.\n"); //Трикутник існує

// Визначення типу трикутника
if (a == b && b == c) {
printf("The triangle is equilateral.\n"); //Трикутник рівносторонній
}
else if (a == b || b == c || a == c) {
printf("The triangle is even-sided.\n"); //Трикутник рівнобедрений
}
else {
printf("triangle zvychainy.\n"); //Трикутник звичайний
}
}
else {
printf("The triangle does not exist.\n"); //Трикутник не існує
}

return 0;
}
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Copyright © 2024 SCHOLAR.TIPS - All rights reserved.