Hey guys
i have a small question here.
float angle0;
printf("\nEnter Original Attack Angle Value in Degree: "); //input angle
scanf("%f", &angle0);
while(angle0<-180 || angle0>180)
{
printf("\nEnter Valid Original Attack Angle Value in Degree: ");
scanf("%f", &angle0);
}
i dont get it when i put in 180 it still let me continue with the next code segment w/o looping... ~><~
Thanks