自己写的飞行棋
本帖最后由 anyuan54 于 2017-9-9 22:29 编辑写完感觉可玩性并不是很大,纯粹是小白练练手
附上一部分源码
在学的一起交流,有老司机带带路吗?
class Program
{
static int[] maps = new int;
static int[] playPos = new int;
static string[] playName = new string;
static bool[] flag = new bool;
static void Main(string[] args)
{
GameShow();
#region玩家姓名的输入
Console.WriteLine("请输入玩家A的姓名");
playName = Console.ReadLine();
while(playName == " ")
{
Console.WriteLine("玩家A的姓名不能为空,请重新输入");
playName = Console.ReadLine();
}
Console.WriteLine("请输入玩家B的姓名");
playName =Console .ReadLine ();
while (playName == " " || playName == playName)
{
if (playName == " ")
{
Console.WriteLine("玩家B的姓名不能为空,请重新输入");
playName = Console.ReadLine();
}
else if (playName == playName)
{
Console.WriteLine("玩家B的姓名不能与玩家A相同,请重新输入");
playName = Console.ReadLine();
}
}
#endregion 谢谢分享,看看怎么玩。 谢谢分享 界面也太费眼了。。。 慢慢来,加油,哈哈 707 发表于 2017-1-23 09:21
界面也太费眼了。。。
哈哈,没注意颜色,确实有点 这个做的挺另类的,支持下 {:301_1008:}我以前可能玩了假的飞行棋 卧槽,我看到假的飞行棋艹了 这是假的飞行器。{:301_997:}
页:
[1]
2