Triangle
This commit is contained in:
@@ -20,3 +20,4 @@
|
||||
|18 | Grade.c | Grade.exe | Use else if ladder statements to find out the result grade from the percentage (Mentioned in file of the program) |
|
||||
|19 | Admission.c | Admission.exe | to find the eligibility of admission for a professional course based on the following criteria (Mentioned in file of the program) |
|
||||
|20 | QuadraticEquatic. | QuadraticEquatic.exe | WAP to calculate the root of a Quadratic Equation |
|
||||
|21 | Triangle.c | Triangle.exe | WAP to check whether a triangle can be formed by the given value for the angles |
|
||||
19
Triangle.c
Normal file
19
Triangle.c
Normal 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");
|
||||
}
|
||||
}
|
||||
BIN
Triangle.exe
Normal file
BIN
Triangle.exe
Normal file
Binary file not shown.
Reference in New Issue
Block a user