i%j=m;(m为余值) printf("%d/%d的余数为%d",i,j,m);
printf("%%");输出的是%
int a,b;scanf("%d%d",&a,&b);printf("%d",a%b); 输出的是a除以b的余数
c=c%10就是取余嘛
百分号%