如何在C#中创建网格表?

时间:2017-09-28 17:31:28

标签: c# grid

我正在尝试为我的井字游戏创建一个3x3网格表 到目前为止,我有这个:


但我想让它看起来像这样:

这是我的代码:enter image description here

1 个答案:

答案 0 :(得分:0)

您可以使用特殊的Unicode字符在控制台中绘制网格。首先像这样定义你的表:

<body>

<p>Input your age and click the button:</p>

<input id="age" />

<button onclick="myFunction()">Try it</button>

<p id="demo"></p>
<p> Under age 5 entry is free

Between ages 5 and 12 (inclusive) a childís ticket costs $5.00

Older than 12 an adult ticket costs $9.00 </p>
<body>

现在您可以使用以下代码打印内容:

var table = new[]
{
    new[] {" ", "0", "1", "2"},
    new[] {"A", null, null, null},
    new[] {"B", null, null, null},
    new[] {"C", null, null, null},
};

您可以找到实时演示here