Write program that declares Class awarded for a given percentage of
marks, where mark <40%= Failed, 40% to <60% = Second class, 60% to <70%=First class,
>= 70% = distinction. Read percentage from standard input.
#include <stdio.h>
void main()
{
int num;
//clrscr();
printf("\n Enter your percentage of marks:\n"); scanf("%d",&num);
printf(" \n You entered percentage of marks : %d", num); // printing outputs
if(num >= 70)
printf(" \n You got distinction "); // printing outputs
else if (( num >=60)&&(num<70))
printf(" \n You got First Class");
else if ( num >=40 && num<60)
printf(" \n You got Second Class");
else if ( num < 40)
printf(" \n You Failed in this exam");
//getch();
}
OUTPUT:
Enter your percentage of marks:
67
You entered percentage of marks : 67
You got First Class
Comments
Post a Comment