1 - WAP that accepts the marks of 5 subjects and finds the sum and percentage marks obtained by the student.
نشرت بواسطة:NAYI Pathshala
November 18, 2018
في
لاتوجد تعليقات
#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
Enter marks of 5 subjects : 80 70 90 80 80Sum : 400Percentage : 80.00
No comments:
Post a Comment