2012-10-21 問:銀行の暗証番号(数字4桁)を自動生成するコードを記述せよ Programing Rubyで書く. 4.times.inject([]){|x|x<<rand(10)}.join("") とか書いてみたが "%04d"%rand(10000) で十分であることに気づいた.