#include <stdio.h>
int main()
{
double num = 2.5; //定义浮点型变量num并赋值为2.5
int wtf = (int)num
printf("num的整数部分是%d\n",wtf);
return 0;
}
我知道了,少了一个分号“;”