Computer Science, asked by rohitvr190204, 1 month ago

c program to find the students in a given class in maths and physics are passed as input.the program must print the total marks of the top scoring student.​

Answers

Answered by sd1234www
0

Answer:

#include <stdio.h>

int main()

{

int phy, chem, bio, math, comp;

float per;

/* Input marks of five subjects from user */

printf("Enter five subjects marks: ");

scanf("%d%d%d%d%d", &phy, &chem, &bio, &math, &comp);

/* Calculate percentage */

per = (phy + chem + bio + math + comp) / 5.0;

printf("Percentage = %.2f\n", per);

/* Find grade according to the percentage */

if(per >= 90)

{

printf("Grade A");

}

else if(per >= 80)

{

printf("Grade B");

}

else if(per >= 70)

{

printf("Grade C");

}

else if(per >= 60)

{

printf("Grade D");

}

else if(per >= 40)

{

printf("Grade E");

}

else

{

printf("Grade F");

}

return 0;

}

Similar questions