美文网首页
2018-11-01(4)

2018-11-01(4)

作者: BlingBling007 | 来源:发表于2018-11-01 22:15 被阅读0次

    using System;

    using System.Collections.Generic;

    using System.Linq;

    using System.Text;

    namespace ConsoleApplication1

    {

    class Program

    {

    static void Main(string[] args)

    {

    //提示用户输入密码,如果密码是“88888”则提示正确,否则提示错误,程序结束。

    Console.WriteLine("请用户输入密码:");

    string str_key = Console.ReadLine();

    bool b=str_key=="88888";

    if (b)

    {

    Console.WriteLine("密码正确");

    }

    else

    {

    Console.WriteLine("密码错误");

    }

    Console.ReadKey();

    }

    }

    }

    相关文章

      网友评论

          本文标题:2018-11-01(4)

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