qq_43412960 2018-11-07 15:34 采纳率: 76.5%
浏览 801
已采纳

关于多维数组取值的问题

public char[,]pHone = {{ 'a','b','c',' '},{'d','e','f',' '},{'g','h','i',' '},{'j','k','l',' '},{'m','n','o',' '},{'p','q','r','s'},{'t','u','v',' '},{'w','x','y','z'}};
怎么输出a,b,c

  • 写回答

1条回答 默认 最新

  • threenewbee 2018-11-07 15:44
    关注
    using System;
    
    public class Test
    {
        public static char[,] pHone = {{ 'a','b','c',' '},{'d','e','f',' '},{'g','h','i',' '},{'j','k','l',' '},{'m','n','o',' '},{'p','q','r','s'},{'t','u','v',' '},{'w','x','y','z'}};
    
        public static void Main()
        {
            // your code goes here
            for (int i = 0; i < pHone.GetLength(1); i++)
            {
                if (i != 0) Console.Write(",");
                Console.Write(pHone[0, i]);
            }
            Console.WriteLine();
        }
    }
    

    a,b,c,

    去掉空格

    using System;
    
    public class Test
    {
        public static char[,] pHone = {{ 'a','b','c',' '},{'d','e','f',' '},{'g','h','i',' '},{'j','k','l',' '},{'m','n','o',' '},{'p','q','r','s'},{'t','u','v',' '},{'w','x','y','z'}};
    
        public static void Main()
        {
            // your code goes here
            bool first = true;
            for (int i = 0; i < pHone.GetLength(1); i++)
            {
                if (pHone[0, i] != ' ')
                {
                    if (!first) Console.Write(","); else first = false;
                    Console.Write(pHone[0, i]);
                }
            }
            Console.WriteLine();
        }
    }
    

    a,b,c

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?