--- プログラム ---

BEGIN{
n=0
while(n<5)
{
    print(n)
    n++
}
}


--- 実行結果 ---

0
1
2
3
4






戻る