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

2018-11-01(2)

作者: wlp小迷妹 | 来源:发表于2018-11-01 09:14 被阅读0次

作业要求

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

代码

...
namespace _2
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("请输入密码");
int a=Convert.ToInt32(Console.ReadLine());
if (a ==88888)
{
Console.WriteLine("正确");
}
else
{
Console.WriteLine("错误,程序结束");
}
Console.ReadKey();
}
}
}
...

效果

2018-11-01(2)

相关文章

网友评论

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

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