好友
阅读权限10
听众
最后登录1970-1-1
|
本帖最后由 anyuan54 于 2017-9-9 22:29 编辑
写完感觉可玩性并不是很大,纯粹是小白练练手
附上一部分源码
在学的一起交流,有老司机带带路吗?
class Program
{
static int[] maps = new int[100];
static int[] playPos = new int[2];
static string[] playName = new string[2];
static bool[] flag = new bool[2];
static void Main(string[] args)
{
GameShow();
#region 玩家姓名的输入
Console.WriteLine("请输入玩家A的姓名");
playName[0] = Console.ReadLine();
while (playName[0] == " ")
{
Console.WriteLine("玩家A的姓名不能为空,请重新输入");
playName[0] = Console.ReadLine();
}
Console.WriteLine("请输入玩家B的姓名");
playName [1]=Console .ReadLine ();
while (playName[1] == " " || playName[1] == playName[0])
{
if (playName[1] == " ")
{
Console.WriteLine("玩家B的姓名不能为空,请重新输入");
playName[1] = Console.ReadLine();
}
else if (playName[1] == playName[0])
{
Console.WriteLine("玩家B的姓名不能与玩家A相同,请重新输入");
playName[1] = Console.ReadLine();
}
}
#endregion |
免费评分
-
查看全部评分
|
发帖前要善用【论坛搜索】功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。 |
|
|
|
|