#include <stdio.h> int main() { float a; int b; scanf("%f", &a); b=(int)a; //将a的值强制转换成int型 printf("%d",b=b%10); return 0; }
% :求余运算符 取小数点后面的数