楼主,这是因为你没有搭载system函数,在C语言里面,它的头文件是stdlib.h,而在C++中,它的头文件是cstdlib。现在我就给你改进过后的代码。
#include
#include
void main()//如果不需要返回值被其他函数调用用void就可以了
{
using namespace std;
cout<<"Hello,world!"<
}
#include
#include
void main()
{
cout<<"hello world"<
}
加一个头文件#include
本来就是一闪而过的呀; 你可以加一句
while(true)
{
}
死循环就OK
#include
int main()
{
using namespace std;
cout<<"hello world"<
return 0;
}