所以我得到了這兩個錯誤。我該如何解決它們?還有一件事是任何人都可以給我變量c的短代碼。編譯此java代碼時出現兩個錯誤
double bucky[]= {7.8,5.9,4.1};
double test[]= {0,0,0};
for(int counter=0;counter<bucky.length;counter++){
double c=(12-(test[0]*bucky[0]+test[1]*bucky[1]+test[2]*bucky[2]))/bucky[counter];
int x= (int) c;
test[counter]=x;
System.out.println(test[counter]);
}
double summation=test[0]*bucky[0]+test[1]*bucky[1]+test[2]*bucky[2];
double loss=12-summation;
System.out.println("Loss is "+ loss);
int level=2;
if(test[level]>0){
for(int jass=0;jass<(1-level);jass++){
double test2[];
double test2[jass]=test[jass];
System.out.println("level after "+ test2[jass]);
}
}
else{
System.out.println("not less");
}
仍然沒有發生循環不起作用。 double bucky [] = {50,40,30,20}; double test [] = {0,0,0,0};
for(int counter=0;counter<bucky.length;counter++){
double c=(130-(test[0]*bucky[0]+test[1]*bucky[1]+test[2]*bucky[2]+test[3]*bucky[3]))/bucky[counter];
int x= (int) c;
test[counter]=x;
System.out.println(test[counter]);
}
double summation=test[0]*bucky[0]+test[1]*bucky[1]+test[2]*bucky[2]+test[3]*bucky[3];
double loss=130-summation;
System.out.println("Loss is "+ loss);
int level=2;
if(test[level]>0){
double test2[] = new double[test.length];
for(int jass=0;jass<(1-level);jass++){
test2[jass]=test[jass];
System.out.println("level after "+ test2[jass]);
}
}
else{
System.out.println("not less");
}
那麼你的語法錯了。重新閱讀如何在Java中聲明和引用數組。 – Kon
試着解釋你在這裏做什麼'double test2 []; double test2 [jass] = test [jass];'。 – Pshemo
該循環中的邏輯對我來說沒有意義。爲什麼你首先聲明一個數組?該循環所做的就是打印出值。所以只需打印它們。根本不需要那個'test2'數組。 – David