Advertisement
chhu0830

test.cpp

May 27th, 2015
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.32 KB | None | 0 0
  1. int main() {
  2.     string password = "abcde", str;
  3.     DATA student[128];
  4.     int c = 0, idx = 0;
  5.     //第一部分
  6.     while (cout << "Please enter your password:", cin >> str) {
  7.         if (str != password) c++;
  8.         else break;
  9.         if (c == 3) {
  10.             cout << "Wrong password!" << endl;
  11.             return 0;
  12.         }
  13.     }
  14.     //第二部分
  15.     system("cls");
  16.    
  17.     return 0;
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement