Answers for "Write a program that inputs test scores of a student and display his grade"

C++
0

Write a program that inputs test scores of a student and display his grade

#include <stdio.h>
int main(void){
int num;
printf("Enter your mark ");
scanf("%d",&num);
printf(" You entered %d", num); // printing outputs

	if(num >= 80){
	printf(" You got A grade"); // printing outputs
		}
	else if ( num >=60){ // Note the space between else & if
		printf(" You got B grade");
		}
	else if ( num >=40){
		printf(" You got C grade");
		}
	else if ( num < 40){
		printf(" You Failed in this exam");
		}
return 0;
}
Posted by: Guest on December-17-2020

Code answers related to "Write a program that inputs test scores of a student and display his grade"

Browse Popular Code Answers by Language