#include <stdio.h> void main() { float f=7.12; char c='c'; printf("%d\n",(int)(f%3));//这里的强制转换要把int加括号、 printf("%c",c); }