#include<stdio.h>
float score;
main()
{
printf("enter score:");
scanf("%f",&score);
if(score>=80)
printf("4");
else if(score>=70)
printf("3");
else if(score>=60)
printf("2");
else if(score>=50)
printf("1");
else if(score<50)
printf("0");
getch();
}
อยากรู้ว่า๓าษาซีที่สมบูญของตัวนี้มันคืออะไรค่ะ อยากรู้จริงๆ
ภาษาซี ช่วยตอบหน่อยนะค่ะ
float score;
main()
{
printf("enter score:");
scanf("%f",&score);
if(score>=80)
printf("4");
else if(score>=70)
printf("3");
else if(score>=60)
printf("2");
else if(score>=50)
printf("1");
else if(score<50)
printf("0");
getch();
}
อยากรู้ว่า๓าษาซีที่สมบูญของตัวนี้มันคืออะไรค่ะ อยากรู้จริงๆ