为啥我复制了在vc++里运行不了
直接复制了你的代码在我的电脑上运行是可以的,但具体我也不知道为什么你的不能运行。
我用的VS2015
#include <stdio.h>
int main()
{
int age = 18;
float height = 1.85;
char unit = 'm';
printf("小明今年%d岁\n", age);
printf("小明身高%f%c\n", height, unit);
printf("小明现在在慕课网上学习IT技术");
return 0;
}