最新回答 / 困就睡觉吧
没看懂你发出来的问题,而且你这代码大括号加错了。正确的如下: int x = 5; int y = 6; if (x >= y) { if (x >= 5) Console.WriteLine("5"); } else { if (y...
2017-11-17
static void Main(string[] args)
{
char[,] ch =new char[3,3] { {'我','是','软'},{'件','工','程'},{'师','啦','!'}};
Console.WriteLine("{0}{1}{2}",ch[1,1],ch[1,2],ch[2,0]);
}
{
char[,] ch =new char[3,3] { {'我','是','软'},{'件','工','程'},{'师','啦','!'}};
Console.WriteLine("{0}{1}{2}",ch[1,1],ch[1,2],ch[2,0]);
}
2017-11-16
最新回答 / qq_成败萧何_0
字符数组的默认值为 空字符串,而不是null或'a',http://blog.csdn.net/lj_2_0_2/article/details/48979333
2017-11-14