How do i get this with decimal part?:
m/i??
Code:
for(i=1;i<=4;i++){
printf("%d\n",m);
s = s + m/i
m = m + 2;
}
Comment