Eggyuar 2021-11-12 19:21 采纳率: 80%
浏览 14
已结题

有没有人可以帮帮我,呜

img

  • 写回答

1条回答 默认 最新

  • bingbingyihao 2021-11-12 21:07
    关注

    回答:程序非常简单,可能不太符合你的要求,如果放在文件内,会稍复杂些,代码如下:

    #include<stdio.h>
    #include<iostream>
    using namespace std;
    
    int main() {
        string pwd = "00000";
        string input;
    
        cout << "请设置密码(初始密码为00000),若不设置则不输入,默认为初始密码" << endl;
        cin >> pwd;
        cout<<endl;
        if (pwd != "") {
            cout << "The new key has been successfully set up!"<<endl;
            cout << "请输入开锁密码:";
            cin >> input;
            if (input == pwd) {
                cout << "It has been successfully unlocked!"<<endl;
            }
            else {
                cout << "Error pwd!";
            }
        }
        else {
            pwd = "00000";
            cout << "请输入开锁密码:";
            cin >> input;
            if (input == pwd) {
                cout << "It has been successfully unlocked!"<<endl;
            }
            else {
                cout << "Error pwd!"<<endl;
            }
        }
    }
    

    img

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 系统已结题 11月20日
  • 已采纳回答 11月12日
  • 创建了问题 11月12日

悬赏问题

  • ¥50 求解vmware的网络模式问题
  • ¥24 EFS加密后,在同一台电脑解密出错,证书界面找不到对应指纹的证书,未备份证书,求在原电脑解密的方法,可行即采纳
  • ¥15 springboot 3.0 实现Security 6.x版本集成
  • ¥15 PHP-8.1 镜像无法用dockerfile里的CMD命令启动 只能进入容器启动,如何解决?(操作系统-ubuntu)
  • ¥30 请帮我解决一下下面六个代码
  • ¥15 关于资源监视工具的e-care有知道的嘛
  • ¥35 MIMO天线稀疏阵列排布问题
  • ¥60 用visual studio编写程序,利用间接平差求解水准网
  • ¥15 Llama如何调用shell或者Python
  • ¥20 谁能帮我挨个解读这个php语言编的代码什么意思?