3

以下のタスクを実行できる Ruby の関数を教えてください。

  • 「0」はテキスト「ゼロ」を与えるはずです

  • 「5」は「5」というテキストを与えるはずです

  • 「6」は「6」というテキストを与えるはずです

4

5 に答える 5

0
mapper = {0 => "zero", 1 => "one", 2 => "two",... }
# and now you can use mapper to print the text version of a numer
print mapper[2]
于 2013-03-30T16:21:46.287 に答える