level 4
冰潇汀
楼主
#include <iostream>
int main()
{
using namespace std;
cout << "\aOperation \"HyperHype\" is now activated!" << endl;
cout << "Enter your agent code:________\b\b\b\b\b\b\b\b";
long code;
cin >> code;
cout << "\aYou entered " << code << "..." << endl;
cout << "\aCode verified! Proceed with Plan Z3!" << endl;
cin.get();
return 0;
}
我用的是DEV C++编译器,我想看结果,于是加了个cin.get();在里面,可是还是一闪即过。。。怎么办?!
2012年02月16日 11点02分
1
int main()
{
using namespace std;
cout << "\aOperation \"HyperHype\" is now activated!" << endl;
cout << "Enter your agent code:________\b\b\b\b\b\b\b\b";
long code;
cin >> code;
cout << "\aYou entered " << code << "..." << endl;
cout << "\aCode verified! Proceed with Plan Z3!" << endl;
cin.get();
return 0;
}
我用的是DEV C++编译器,我想看结果,于是加了个cin.get();在里面,可是还是一闪即过。。。怎么办?!