美文网首页
2018-11-01

2018-11-01

作者: 一只皮皮橙 | 来源:发表于2018-11-01 21:46 被阅读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

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