Scalaでは、イテレーターを使用して、for
次のような昇順でループを実行することがよくあります。
for(i <- 1 to 10){ code }
それを10から1にするにはどうしますか?10 to 1
(通常の範囲の数学のように)空のイテレータを与えると思いますか?
イテレータでreverseを呼び出すことによってそれを解決するScalaスクリプトを作成しましたが、私の意見では良くありません。
def nBeers(n:Int) = n match {
case 0 => ("No more bottles of beer on the wall, no more bottles of beer." +
"\nGo to the store and buy some more, " +
"99 bottles of beer on the wall.\n")
case _ => (n + " bottles of beer on the wall, " + n +
" bottles of beer.\n" +
"Take one down and pass it around, " +
(if((n-1)==0)
"no more"
else
(n-1)) +
" bottles of beer on the wall.\n")
}
for(b <- (0 to 99).reverse)
println(nBeers(b))
until
代わりに使用できることも指摘しておく必要がありto
ます。左側のエンドポイントは常に含まれます。