Step by step descriptive logic to find total, average and percentage.BY GOOGLE SEARCH
1) Input marks of five subjects.
2) Store it in some variables say eng, phy, chem, math and comp.
3) Calculate sum of all subjects and store in total = eng + phy + chem + math + comp.
4) Divide sum of all subjects by total number of subject to find average i.e.
5) average = total / 5.
Calculate percentage using percentage = (total / 500) * 100.
Finally, print resultant values total, average and percentage.
Program
/**
* C program to calculate total, average and percentage of five subjects
*/
#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;
}
Comments
Post a Comment