create a program to accept the marks of all the students in your class and find out the average marks
Answers
Answered by
0
#include <stdio.h>
int main()
{
float eng, phy, chem, math, comp;
float total, average, percentage;
/* Input marks of all five subjects */
printf("Enter marks of five subjects: \n");
scanf("%f%f%f%f%f", &eng, &phy, &chem, &math, &comp);
/* Calculate total, average and percentage */
total = eng + phy + chem + math + comp;
average = total / 5.0;
percentage = (total / 500.0) * 100;
/* Print all results */
printf("Total marks = %.2f\n", total);
printf("Average marks = %.2f\n", average);
printf("Percentage = %.2f", percentage);
return 0;
}
Similar questions
English,
7 months ago
Hindi,
7 months ago
Environmental Sciences,
7 months ago
English,
1 year ago
Chemistry,
1 year ago
Math,
1 year ago
Political Science,
1 year ago