#include<stdio.h>
#include<conio.h>
main()
{
int m,p,c;
float Total ,per;
printf("\n Enter marks of maths , physics, chemistry : );
scanf("%d%d%d",&m,&p,&c );
Total = m+p+c;
percentage=total/300*100;
printf("\n Total marks of the student is =%f ",Total);
printf("\n Total percentage of the student is =%f % ",per);
getch();
}
*/output
Enter marks of maths , physics, chemistry :78,55,80
Total marks of the student is =210
Total percentage of the student is =70 %
*/
😊😉😮
pe
👍🙂😙
ReplyDelete