#include <stdio.h>
int main()
{
int result;
scanf("%d",&result);
printf("%d\n",result);
switch(result)
{
case 8:
printf("You got 8 CGPA\n");
break;
case 10:
printf("You got 10 CGPA\n");
break;
case 7:
printf("You got 7 CGPA\n");
break;
default:
printf("Your CGPA is out of list\n");
break;
}
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: