lao师课上给的一段程序(有删减),说必须用vs2010版本的。我的2022版本跑不通
#include "stdafx.h"
#include"路径\x_math.cpp"
#include"路径\x_graph.cpp"
double step(double t)
{
return (t >= 0) ? 1 : 0;
}
int main(int argc, char* argv[])
{
printf("step()=%f\n", step(0));
_getch();
return 0;
}
报错是error C1083: 无法打开包括文件: “stdafx.h”: No such file or directory
或者error MSB8041: 此项目需要 MFC 库。从 Visual Studio 安装程序(单个组件选项卡)为正在使用的任何工具集和体系结构安装它们。
记得好像课上创建新项目时选的win32控制台,2022没有,试了windows桌面和桌面向导都不行