using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace _001.text
{
class Program
{
static void Main(string[] args)
{
int count = 0;
Console.WriteLine("2017年8月12日第一次登陆月球,请说说你的感想!");
while (true)
{
string str = Console.ReadLine();
switch(str)
{
case "我没什么感想":
Console.WriteLine("您真是才不外露,无声胜有声");
break;
case "呵呵":
Console.WriteLine("神秘的笑声中究竟有什么秘密");
break;
case "我大码农也有今天呀":
Console.WriteLine("。。。。。");
break;
default:
Random(count);
count++;
break;
case "不要打扰我睡觉":
return;
}
}
}
public static void Random(int count)
{
string[] random = new string[] { "没听见,您说得什么", "沉默是金", "别瞎掰掰了赶紧说,现在还能饶过你" };
Random Ra = new Random();
int index = Ra.Next(0, random.Length - 1);
if (count > 0)
{
Console.WriteLine(random[2]);
}
else
{
Console.WriteLine(random[index]);
}
}
}
}