答案 0 :(得分:0)
我认为您在 标题 的末尾有一个空格,尝试使用 LIKE 而不是 = :
for(int[] a_row: a){
for(int index=0; index < a_row.length; index++){
a_row[index]+=1;
}
}
for(int[] a_row: a){
for(int i: a_row){
System.out.print(i+"\t");
}
System.out.println("\n");
}
希望这有助于。