#!/usr/vin/env ruby # -*- coding: utf-8 -*- nedan = ["うどん","ラーメン","チョコ"] i = 0 for n in nedan printf("私の好きな食べ物第%d位は%sです\n",i,n) i += 1 end