在C中判断一个数是否是整型2017-01-25 本文已影响0人 高兴的和 #includeint main() { float x=3.22; if((int)x==x) printf("是\n"); else printf("否\n"); return 0; }