美文网首页
12.27小游戏

12.27小游戏

作者: tokio1004 | 来源:发表于2019-01-02 08:02 被阅读0次

string user; string newuser; string password;

string newpassword; int card;

int min = 1000; int max = 9999;

Random rd = new Random();

rd.Next(min, max);

try

{

Console.WriteLine("******欢迎进入奖客富翁系统******");

Console.WriteLine("\t\t1.注册");

Console.WriteLine("\t\t2.登录");

Console.WriteLine("\t\t3.抽奖");

Console.WriteLine("********************************");

Console.Write("请选择菜单:");

string a = Console.ReadLine();

switch (a)

{

case "1":

Console.WriteLine("奖客富翁系统>注册");

Console.Write("继续吗?(y/n):");

string b = Console.ReadLine();

if (b == "y")

{

Console.WriteLine("请填写个人注册信息:");

Console.Write("用户名:");

user = Console.ReadLine();

Console.Write("密码:");

password = Console.ReadLine();

Console.WriteLine("注册成功,请记好您的会员卡号");

Console.WriteLine("用户名\t\t\t密码\t\t\t会员卡号");

Console.WriteLine("{0}\t\t\t{1}\t\t\t{2}",user,password,rd.Next(min, max));

}

else if (b == "n")

{

Console.WriteLine("程序退出,谢谢使用!");

}

else

{

Console.WriteLine("您的输入有误");

}

break;

case "2":

Console.WriteLine("奖客富翁系统>登录");

int i = 3;

while (i>0)

{

Console.Write("请输入用户名:");

user = "admin";

newuser = Console.ReadLine();

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

password = "123456";

newpassword =Console.ReadLine();

if (newuser=="admin" && newpassword=="123456")

{

Console.WriteLine("{0},欢迎您的登录!",user);

break;

}

else

{

if (i>0)

{

Console.WriteLine("你还有{0}次机会",i-1);

i--;

continue;

}

else

{

Console.WriteLine("你没有机会了,退出程序!");

break;

}

}

}

break;

case "3":

Console.WriteLine("奖客富翁系统>抽奖");

Console.Write("请输入您的卡号:");

card = Convert.ToInt32(Console.ReadLine());

Console.WriteLine("本日的随机数是:");

for (int d = 0; d < 5; d++)

{

Console.WriteLine("{0}", rd.Next(min, max));

}

if (card== rd.Next(min, max))

{

Console.WriteLine("");

}

else

{

Console.WriteLine("很抱歉,您不是本日会员!");

}

break;

default:

Console.WriteLine("您的输入有误!");

break;

}

}

catch

{

Console.WriteLine("您输入的格式有误,请重新输入!");

}

Console.ReadKey();

相关文章

  • 12.27小游戏

    string user; string newuser; string password; string newp...

  • 2020-01-22

    倩倩:农历12.27

  • 12.27

    那些寻找的安慰在环境更新以后就失去了平衡,再次陷入那些顾虑之中。 似乎工作开始,一切都变得紧张起来,什么都要干,变...

  • 12.27

    以前一个字一个字的写出 现在一个字一个字的打出 下面的人活得好辛苦 上面的人想方设法维护自己的系统 也总是没有安全...

  • 12.27

    以玫瑰为灵感 兰蔻2017春妆诠释巴黎女人的浪漫 柔美轻甜的粉红色,不只是最能代表春天的颜色,也是兰蔻Lancom...

  • 12.27

    求而不得的,是喜欢。 我大约也没想过16年会这样结束在难堪的这里。 又尝试着发了一条短信。 仍然没有回复。 明明是...

  • 12.27

    昨晚电台说 要找两个人去听什么新闻采写交流会观众 恩我本来是无视这个消息的 后来 电台办公室 也就是我现在所在的部...

  • 12.27

    别太注重外表的光鲜亮丽,内在美更重要,现在,知识的积累更重要!

  • 12.27

    今天喝了酒,因为一些别的事情感到有些开心,好像高中初中时候的开心,心底偷偷的有些波纹。 唉,面对历史和未来,就像被...

  • 12.27

    旧事重提,一切逐渐变得清晰起来。时间模糊了对往事的记忆,却悄悄在心底给了你一个明确的答案。 我们抱怨,放弃,...

网友评论

      本文标题:12.27小游戏

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