一个银行
系统
的密码输入,限制输入次数(do ..while语句)
#include <stdio.h>
int main(void){
int password;
int count=0;
printf("您的密码只能输入三次,超过三次将被锁住!\n");
do{
if(count<3){
printf("输入您的密码:\n");
scanf("%ld",&password);
printf("密码错误,在想想\n");
}
else if(3==count){
printf("密码错误,卡以被锁!");
}
count++;
}
while(123456!=password);
printf("进入银行系统!!");
}
#include <stdio.h>
int main(void){
int password;
int count=0;
printf("您的密码只能输入三次,超过三次将被锁住!\n");
do{
if(count<3){
printf("输入您的密码:\n");
scanf("%ld",&password);
printf("密码错误,在想想\n");
}
else if(3==count){
printf("密码错误,卡以被锁!");
}
count++;
}
while(123456!=password);
printf("进入银行系统!!");
}