fork(1) download
  1. using System;
  2. using System.Linq;
  3.  
  4. public class Test
  5. {
  6. public static char[][]pHone = new char[8][]{new char[3]{ 'a','b','c'},new char[3]{'d','e','f'},new char[3]{'g','h','i'},new char[3]{'j','k','l'},new char[3]{'m','n','o'},new char[4]{'p','q','r','s'},new char[3]{'t','u','v'},new char[4]{'w','x','y','z'}};
  7. public static void Main()
  8. {
  9. // your code goes here
  10. Console.Write("{0}",string.Join(",", pHone[0].Select(x => x.ToString())));
  11. }
  12. }
Success #stdin #stdout 0s 131520KB
stdin
Standard input is empty
stdout
a,b,c