C Program to calculate sum of 5 subjects and find percentage
C Program to calculate sum of 5 subjects and find percentage
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
#include<stdio.h> int main() { int s1, s2, s3, s4, s5, sum, total = 500; float per; printf("\nEnter marks of 5 subjects : "); scanf("%d %d %d %d %d", &s1, &s2, &s3, &s4, &s5); sum = s1 + s2 + s3 + s4 + s5; printf("\nSum : %d", sum); per = (sum * 100) / total; printf("\nPercentage : %f", per); return (0); } |
Output :
1 2 3 |
Enter marks of 5 subjects : 80 70 90 80 80 Sum : 400 Percentage : 80.00 |