关于C++编译问题,请大家帮忙. ( 积分: 100 )

  • 主题发起人 主题发起人 lookchina
  • 开始时间 开始时间
L

lookchina

Unregistered / Unconfirmed
GUEST, unregistred user!
在登录一个界面时,需要输入“用户名”和“密码”,但只能输入三次,如果三次输入都不对,则退出程序!用C++来编译这样一个程序的基本思路是什么了?
急啊!!!!
 
在登录一个界面时,需要输入“用户名”和“密码”,但只能输入三次,如果三次输入都不对,则退出程序!用C++来编译这样一个程序的基本思路是什么了?
急啊!!!!
 
以下使用描述语音,给出基本思路
class input_password_dialog
{
public char password[20];
public char username[20];
public boolean check_ok ;
...
}
// in the main application
int input_count = 0;
bool input_ok = false;
while ((!input_ok) &&
(input_count<3))
{
input_count++;
do
the input_password_dialog;
if input_password_dialog.check_ok
{
input_ok = true;
}
}
if (!input_ok)
{
// error message out: user name or password error...
// program halt...
}
// application countinue...
 
后退
顶部