اكتب برنامج C للتحقق مما إذا كانت ثلاثة أطوال (أعداد صحيحة) لثلاثة أضلاع مثلث تشكل مثلثًا قائمًا أم لا
- برمجة
- برمجة سي c
- 2021-05-03
- Wassim
الأجوبة
/*Write a C program to check whether three given lengths (integers) of three sides of a triangle form a right triangle or not. Print "Yes" if the given sides form a right triangle otherwise print "No"*/
#include
int main()
{
int x,y,z;
printf("Input the three sides of a trainagel:\n");
scanf("%d %d %d",&x,&y,&z);
if((x*x)+(y*y)==(z*z) || (x*x)+(z*z)==(y*y) || (y*y)+(z*z)==(x*x) )
{
printf("It is a right angle triangle!\n");
}
else
{
printf("It is not a right angle triangle!\n");
}
return 0;
}
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال