#!/usr/vin/env ruby # -*- coding: utf-8 -*- nedan = [50,100,150,200] i = 0 while i < nedan.length printf("%dつ目の値段は%d円です。\n",i+1,nedan[i]) i += 1 end