using System;
public class Program
{
public static void Main()
String[,] words = {
{"able","(有能力的)"}
, {"about","(有關)"}
, {"above","(在上方)"}
, {"abroad","(在國外)"}
, {"absent","(缺席的)"}
, {"accept","(接受)"}
, {"accident","(意外)"}
, {"across","(在…對面)"}
, {"act","(行為)"}
};
for(int i=0;i<words.Length/words.Rank;i++)
Console.WriteLine("單字 {0} 是 {1} 中文是 {2}", i, words[i,0], words[i,1]);//
}