#include <iostream>
using namespace std;
int main()
{
cout<<"hahaha" n/;
return 0;
}
然后组建时提示
D:\Program Files\Microsoft Visual Studio\MyProjects\lk\aaa.cpp(5) : error C2059: syntax error : ';'
执行 cl.exe 时出错.
另外,怎样能使建立的程序不会在按下任意键退出?
#include <iostream>
using namespace std;
int main()
{
cout<<"hahaha" n/;
return 0;
}
然后组建时提示
D:\Program Files\Microsoft Visual Studio\MyProjects\lk\aaa.cpp(5) : error C2059: syntax error : ';'
执行 cl.exe 时出错.
另外,怎样能使建立的程序不会在按下任意键退出?
#include <iostream>
using namespace std;
int main()
{
cout<<"hahaha" << endl; //要输出回车,C++用endl;
cout<<"hahaha\n" ; //或者用转义符\n.但是必须写在"这里面";
return 0;
}
至于你问的不会在按下任意键退出. 是什么意思? 是想当按下某个键才退出,其他键不退出吗?
#include <iostream> using namespace std; int main() { cout<<"hahaha" n/; //这里修改成cout<<"hahaha\n" ; getchar(); //想要使建立的程序不会在按下任意键退出,在return 0前面加个getchar(); 就可以了
return 0; }