bondini.cpp 412 B

123456789101112131415
  1. // bondini.cpp -- using escape sequences
  2. #include <iostream>
  3. int main()
  4. {
  5. using namespace std;
  6. cout << "\aOperation \"HyperHype\" is now activated!\n";
  7. cout << "Enter your agent code:________\b\b\b\b\b\b\b\b";
  8. long code;
  9. cin >> code;
  10. cout << "\aYou entered " << code << "...\n";
  11. cout << "\aCode verified! Proceed with Plan Z3!\n";
  12. // cin.get();
  13. // cin.get();
  14. return 0;
  15. }