标签:
string[,] wang = new string[,] { {"■","■","■","■","■","■","■"}, {" "," "," ","■"," "," "," "}, {" "," "," ","■"," "," "," "}, {"■","■","■","■","■","■","■"}, {" "," "," ","■"," "," "," "}, {" "," "," ","■"," "," "," "}, {"■","■","■","■","■","■","■"} }; for (int i = 0; i < 7; i++) { for (int j = 0; j < 7; j++) { Console.Write(wang[i, j]); } Console.WriteLine(); } Console.ReadLine();
标签:
原文地址:http://www.cnblogs.com/fengsantianya/p/5479536.html