รันได้แล้วครับ ทันเวลาพอดี (ปล.ไม่น่าต่อคณะนี้เลย 55 จบรัฐศาสตร์ต่อเทคโนฯคอมฯ มันอะไรกันนี่)
#include<stdio.h>
#include<conio.h>
void main()
{
char name [30];
int score;
clrscr();
printf("name : ");
scanf("%s",&name);
printf("Score : ");
scanf("%d",&score);
while(score>=101)
{
printf("ERROR %d\n",score);
scanf("%d",&score);
}
{
if((score>=70)&&(score<=100))
printf("Very Good\n");
else if((score>=50)&&(score<=69))
printf("Good\n");
else if((score>=0)&&(score<=49))
printf("Oh..No**__**\n");
}
getch();
}