java
1class Ex1_11_1 { 2 public static void main (String[] args) { 3 while(6>1 + (int)(Math.random() * 6.0)){ 4 System.out.println( 1 + (int)(Math.random() * 6.0)); 5 } 6 7 System.out.println("6が出たので終わります");
このwhile文で6が出たらwhile文を抜けループを終わらせたいのですが
これを実行すると
1
6
5
3
4
6が出たので終わります
となる時があります
1
6 ←ここで6が出ているのに終わらないのは、なぜでしょうか
5
3
4
回答3件
あなたの回答
tips
プレビュー