#include <stdio.h> int main() { int a,b; scanf("%d.%d",&a,&b); printf ("%d",a%10); return 0; } 首先,定义a,b,然后让scanf读取到"."作为一个分割线,于是左边变成一个整数,对10取余即可