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();
}
}
}