查看單個文章
舊 2004-03-14, 04:30 AM   #5 (permalink)
indark
註冊會員
榮譽勳章
UID - 7397
在線等級: 級別:6 | 在線時長:63小時 | 升級還需:14小時
註冊日期: 2002-12-09
住址: MD, USA (現回台灣等當兵 呼呼)
文章: 71
精華: 0
現金: 78 金幣
資產: 78 金幣
預設

引用:
原文由 starforce 所發表
1.沒有呼叫STRING
What compiler do you use?
引用:
2.counter ++: 是分號不是冒號
The following has been tested with Dev C++
no error messages were generated,
so it should be correct this time,

------------------------------------------------

#include<iostream>
using namespace std;

int main() {
bool isMatch = false;
string userInput, pass = "defaultpass";
int counter = 1;
cout << "Please enter your password" << endl;
cin >> userInput;
for(int counter = 1; counter <=3 && !(userInput == pass); counter++)
{
cout << "Please try again" << endl;
cin >> userInput;
}

if(!isMatch)
cout << "pass locked" << endl;

return 0;
}
indark 目前離線  
送花文章: 1, 收花文章: 2 篇, 收花: 2 次
回覆時引用此帖