我无法得到这个答案:
*****
****
***
**
*
多维数组,嵌套 ( do..while, while, for)
char[,] stars = new char[5, 3];
for (int i = 0; i < 5; i++)
{
for(int x=0;x<3;x++)
{
stars[i,x]=char.Parse("*");
Console.Write(stars[i, x]);
我想要获得 5 颗“*”星,然后在新行中获得 4 颗星,然后在新行中获得 3 颗星,然后在新行中获得 1 颗星
慕慕森
慕少森
相关分类