Create a flowchart and a program that will ask for inputs from the user and will compute the grade of the student for specific subject. The grade to be given on each criteria must not be greater than 95 and must not be lower than 65. code example

Example: 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;
}

Tags:

Cpp Example