码迷,mamicode.com
首页 > 其他好文 > 详细

棋盘(网上找的,仅自用,非原创)

时间:2018-04-07 16:20:19      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:body   lin   ++   char   write   class   board   lse   for   

using System;
class ChessBoard
{
public char[,] SquareColor=new char [8,8];
public ChessBoard()
{
for(int i=0;i<SquareColor.GetLength (0);i++)
{
for(int x=0;x<SquareColor.GetLength (1);x++)
{
if((x%2)==0)
if((i%2)==0)
SquareColor[i,x]=‘W‘;
else
SquareColor[i,x]=‘B‘;
else
if((i%2)==0)
SquareColor[i,x]=‘B‘;
else
SquareColor[i,x]=‘W‘;
}
}
}
void DrawBoard()
{
for(int i=0;i<SquareColor.GetLength (0);i++)
{
for(int x=0;x<SquareColor.GetLength (1);x++)
{
Console.Write (SquareColor[i,x]);
}
Console.WriteLine();
}
}
static void Main()
{
ChessBoard MyChessBoard=new ChessBoard ();
MyChessBoard.DrawBoard ();
}
}

棋盘(网上找的,仅自用,非原创)

标签:body   lin   ++   char   write   class   board   lse   for   

原文地址:https://www.cnblogs.com/hsyv123ve/p/8733353.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!