The angles of a triangle are (x - 50°), (x - 10") and
(1/2x-10), find their
their measures .
Answers
Answered by
3
Step-by-step explanation:
#include <stdio.h>
#include <conio.h>
void main()
{
int num,res=0;
clrscr();
printf("\nENTER A NUMBER: ");
scanf("%d",&num);
res=prime(num);
if(res==0)
printf("\n%d IS A PRIME NUMBER",num);
else
printf("\n%d IS NOT A PRIME NUMBER",num);
getch();
}
int prime(int n)
{
int i;
for(i=2;i<=n/2;i++)
{
if(n%i!=0)
continue;
else
return 1;
}
return 0;
}
Answered by
1
Answer:
According to question
x-50+x-10+x½-10=180
3x-50-10+½-10=180
3x-50-10-10=180*2
3x-70=360
3x=360+70
x=450/3
x=160
x-50=160-50=110
x-10=160-10=150
x½-10=160½-10=80-10=70
Hope it help you
Similar questions