#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;
}
最后運行時,運行窗口只是一閃,窗口就不見了,請問如何停留住運行窗口····