-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathP11.c
41 lines (40 loc) · 909 Bytes
/
P11.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
Author :- Rajeshwari
purpose :- solving problem
Date :-07/10/21 Thuesday .
Date of modification :- 19/12/21 , Sunday .
Problem statement
write a program to accept 3 sides of a triangle and print whether it is an equilateral triangle
useing nested if-else
*/
#include<stdio.h>
#include<conio.h>
void main()
{
int s1,s2,s3,a;
printf("Enter 3 sides of a triangle\n");
scanf("%d%d%d",&s1,&s2,&s3);
a=s1+s2+s3;
if(a==180)
{
if(s1==s2&&s2==s3)
{
printf("This is an Equilateral traingle\n");
}
else
{
if(s1==s2||s2==s3)
{
printf("This is an isoscelus triangle\n");
}
else
{
printf("This is a scalene triangle\n");
}
}
}
else
{
printf("This is not a triangle\n");
}
}