fork download
  1.  
Success #stdin #stdout 0.04s 25608KB
stdin
#include <stdio.h>
#include <conio.h>
main()
{
   int score;
   printf("Enter your score : ");
   scanf ("%d", &score);
   if (score>= 100)
   printf("Prize 500 Baht \n");
   else if (score>= 90)
   printf("Prize 400 Baht\n");
   else if (score>= 80)
   printf"Prize 300 Baht\n");
   else if (score>= 70)
   printf("Prize 200 Baht\n");
   else if (score>= 60)
   printf("Prize 100 Baht\n");
getch ();
return (0);
}
stdout
Standard output is empty