跪求高手!Visual Studio 2010 与 Visual C++ 6.0的语法应用区别的问题,详情请进~~

2024-11-17 08:57:08
推荐回答(2个)
回答1:

两串代码其实是一样的 c++语言也有很多标准的 也在发展的
第二段代码还可以改一下 在include的后面一行添加using namespace std;
这样在main函数里面就不用std::这样的东西了

在vc6.0也可以运行第二段代码

回答2:

#include not #include这两个不一样。
另外。用到cout cin cerr(这三个都是类)需要用到名空间,using namespace std;
void 和int 只是函数返回值类型不一样而已。