#include <iostream>
#include <string>
using namespace std;
int main()
{ string str1;
string str2="You name is :";
cout<<"Enter you name "<<endl;
cin>>str1;
cout<<str2<<" "<<str1<<endl;
cout <<str1.size()<<endl;
string str3 =str1 +str2;
cout<<str3;
cin.get();
return 0;
}
最后运行时,运行窗口只是一闪,窗口就不见了,请问如何停留住运行窗口····
我在当前运行一个工程的时候,想改为运行另一个,不知道怎么做·········
直接按打开,然后可以打开cpp文件,但在运行时,总是显示上一个工程,即使关掉上一个工程的编辑对话框也不行,
最后,只好把c++关了,然后再从新打开要运行的工程·····
请指点一下,自己弄了很长时间,都不知道怎么回事······