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

关于多维数组取值的问题
- 写回答
- 好问题 0 提建议
- 关注问题
- 邀请回答
-
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
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报