View Single Post
ישן 21-11-06, 21:13   # 7
Reality
חבר בקהילה
 
מיני פרופיל
תאריך הצטרפות: Oct 2005
מיקום: נהר
הודעות: 253

Reality לא מחובר  

קוד:
#include <stdio.h>
#include <conio.h>

void main(void)
{
float a,b,c,d;
printf("Enter value of angle\n");
scanf("%f",&a);
getch();
if(a==90)
{
printf("The angle is straight\n");
getch();
}
else
if(a<90)
{
printf("The angle is sharp\n");
getch();
}
else
if(a>90)
{
printf("The angle is dim\n");
getch();
}
getch();
}
  Reply With Quote