#include <stdio.h>
void main(void)
{
printf("请问您想做什么?\n");
printf("1 运用点斜式计算直线的方程。\n");
printf("2 运用两点式计算直线的方程。\n");
printf("3 求助\n");
printf("4 版权\n");
printf("5 退出\n");
printf("请输入您所选的功能的代码!\n");
}
这样编译器报错
--------------------Configuration: 直线的方程 - Win32 Debug--------------------
Compiling...
直线的方程1.cpp
d:\software\text\直线的方程\直线的方程1.cpp(19) : fatal error C1010: unexpected end of file while looking for precompiled header directive
执行 cl.exe 时出错.
直线的方程.exe - 1 error(s), 0 warning(s)
请问编译器抱错的内容是什么?
谢谢