美文网首页
第五次作业第三题

第五次作业第三题

作者: 孤独是种安全感_b7bf | 来源:发表于2018-11-01 19:05 被阅读0次

    代码

    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Text;

    namespace ConsoleApplication3
    {
    class Program
    {
    static void Main(string[] args)
    {
    /**
    *1 提示用户输入用户名,然后再提示输入密码,,
    *2 如果用户名是“admin”并且密码是“88888”,则提示正确
    *3 否则,如果用户名不是admin还提示用户用户名不存在
    *4 如果用户名是admin则提示密码错误.
    * */

            //请用户输入
            Console.WriteLine("请输入用户名:");
            //接收用户输入
            string strname = Console.ReadLine();
       
            
    
            Console.WriteLine("请输入密码:");
            string strabc = Console.ReadLine();
            //转换数字型数值
            int abc = Convert.ToInt32(strabc);
    
            //
            if (strname == "admin" && abc == 88888)
            {
                Console.WriteLine("正确");
    
            }
            else if (strname != "admin")
            {
                Console.WriteLine("用户名不存在");
            }
            else if(abc != 88888)
            { 
                Console.WriteLine("密码错误");
            }
            Console.ReadKey();
    
        }
    }
    

    }

    效果

    IMG_20181101_092528.jpg

    相关文章

      网友评论

          本文标题:第五次作业第三题

          本文链接:https://www.haomeiwen.com/subject/wydtxqtx.html