- 這段代碼是用於日食學習課程的,我們的老師出來了,有人可以解釋錯誤,謝謝。我們試圖在數組中的循環內創建一個循環。
package Wrok;我如何修復這個循環在Java Eclipse中的數組循環中?
import java.util.Random;
public class Victory {
public static void main(String[] args) {
// TODO Auto-generated method stub
Random ran = new Random();
double x = ran.nextInt(6) + 5;
Random ran1 = new Random();
double y = ran.nextInt(6) + 5;
int Time = -1;
double[][] hello = new double [2][2];
hello[0][0]= 1;
hello[0][1]= 2;
hello[1][0]= 3;
hello[1][1]= 4;
for (int i = 0; i<Time; i++){
for (int j = 0; j<Time; j++){
if(ran = 0){
if (ran1 = 0){
System.out.println(hello[0][0]);
}
}
if(ran = 1){
if (ran1 = 0){
System.out.println(hello[1][0]);
}
}
if(ran = 0){
if (ran1 = 1){
System.out.println(hello[0][1]);
}
}
if(ran = 1){
if (ran1 = 1){
System.out.println(hello[1][1]);
}
}
}
}
}
}
'我<時間'和'時間= -1'。鋤頭經常會運行?... – exception1
循環從不啓動,因爲'時間'是-1。 'i'爲'0',所以條件'我<時間'('0 <-1')不滿足 –
'if(ran = 0)'樣式行非常可疑。 'ran = 0'正在賦值並且整數賦值給if中的'Random'。 –