View Single Post
ישן 21-11-06, 21:38   # 8
Ori The Man
משתמש - היכל התהילה
 
מיני פרופיל
תאריך הצטרפות: Oct 2005
מיקום: חיפה
גיל: 34
הודעות: 3,694
שלח הודעה באמצעות MSN אל Ori The Man Send a message via Skype™ to Ori The Man

Ori The Man לא מחובר  

ציטוט:
נכתב במקור על ידי 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();
}
א.הוא הסתדר
ב.הוא ביקש ב C# לא ב C
  Reply With Quote