解题思路:
···设个f=3,每次输入f--;分2种情况:
1.f>0 时 常规操作
2.f=0 时 分两种 输入正确or输入错误
注意事项:
注意此题贴合实际 在f>0时,用户输入正确时,直接就可以退出循环了,别傻傻的输对了,还继续
···具体看代码
参考代码:
#include <iostream> #include <cstdio> #include <cstring> using namespace std; /* 正确账号为:dotcpp 密码为:123456 只有账号和密码都正确,才可以提示:Successful landing! 否则提示:Landing failure! There's another X chance! 其中X代表次数,只能为2和1,为0时直接提示:Account freeze! */ int main() { char a[100],b[100]; int f=3; while(1) { scanf("%s%s",a,b); f--; if(f>0) { if(strcmp(a,"dotcpp")==0&&strcmp(b,"123456")==0) { cout<<"Successful landing!"<<endl; break; } else printf("Landing failure! There's another %d chance!\n",f); } else { if(strcmp(a,"dotcpp")==0&&strcmp(b,"123456")==0) cout<<"Successful landing!"<<endl; else cout<<"Account freeze!"<<endl; break; } } return 0; }
记得留个大赞哦~~~
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题8.9 (C语言代码) 用函数传参的方法浏览:4120 |
2006年春浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:912 |
【亲和数】 (C语言代码)浏览:908 |
输出正反三角形 (C语言代码)格式错误!!!浏览:1177 |
C语言训练-尼科彻斯定理 (C语言代码)浏览:509 |
WU-蓝桥杯算法提高VIP-勾股数 (C++代码)浏览:1685 |
K-进制数 (C语言描述,蓝桥杯)浏览:955 |
Tom数 (C语言代码)浏览:758 |
C语言程序设计教程(第三版)课后习题10.7 (C语言代码)浏览:1260 |
陶陶摘苹果2 (C++代码)浏览:578 |