#include <stdio.h>
int main() {
int x,y,z,avg,tot;
printf("Enter the mark of first subject : ");
scanf("%d",&x);
printf("%d\n",x);
printf("Enter the mark fo second subject : ");
scanf("%d",&y);
printf("%d\n",y);
printf("Enter the mark of third subject : ");
scanf("%d",&z);
printf("%d\n",z);
avg=(x+y+z)/3;
tot=(x+y+z);
if (x,y,z <=35)
{printf("Fail");}
else if (avg>=60)
{printf("First Class\n");
printf("The total marks is : %d\n", tot);
printf("The Average mark is : %d\n",avg);}
else
{printf("Second Class");
printf("The total marks is : %d\n", tot);
printf("The Average mark is : %d\n",avg);}
return 0;
}
To embed this project on your website, copy the following code and paste it into your website's HTML: