This commit is contained in:
2021-04-27 11:03:16 +05:30
parent 6ac9870f54
commit 2ec9c69743
3 changed files with 21 additions and 1 deletions

19
Triangle.c Normal file
View File

@@ -0,0 +1,19 @@
// WAP to check whether a triangle can be formed by the given value for the angles.
void main() {
int anga, angb, angc, sum; //are three angles of a triangle
printf("Input three angles of triangle : ");
scanf("%d %d %d", &anga, &angb, &angc);
/* Calculate the sum of all angles of triangle */
sum = anga + angb + angc;
/* Check whether sum=180 then its a valid triangle otherwise not */
if(sum == 180) {
printf("The triangle is valid.\n");
}
else {
printf("The triangle is not valid.\n");
}
}