Nov 28 2012, 02:29 PM
M. Bison, post: 81035, member: 359 Wrote:98+99+88+87+79 = 451 which divided by 500 is less than 1. The datatype is an int which means anything beyond the integer is dropped, making it 0. The result is 0 * 100 = 0.
Try this:
Code:#include<stdio.h>
int main()
{
int m1,m2,m3,m4,m5,per;
printf("Enter the marks of five subjects\n");
scanf("%d%d%d%d%d",&m1,&m2,&m3,&m4,&m5);
per=(int)(((float)(m1+m2+m3+m4+m5))/500.0*100.0);
if(per>=80)
printf("First Division\n");
else if(per>=60)
printf("Second Division\n");
else if(per>=50)
printf("Third Division\n");
else
printf("Fail");
return 0;
}
I kneel to you O Great Hax King.
Btw Bison is right, i just divided by 5 and did not receive that error.
Man I'm rusty. keep the questions coming!
be the best version of yourself, that's all you can do.


![[-]](https://war-lords.net/forum/images/collapse.png)