给出下列代码,哪行在编译时可能会有错误?
举一反三
- 给出下列代码,哪行在编译时可能会有错误?① public void modif...⑦ k = k + 1;⑧ }⑨ }
- 给出下列的代码,哪行在编译时可能会有错误 A: line4 B: line6 C: line7 D: line8
- 给出下列代码,哪行在编译时可能会有错误? ① public void modify(){ ② int i, j, k; ③ i = 100; ④ while ( i > 0 ){ ⑤ j = i * 2; ⑥ System.out.println (" The value of j is " + j ); ⑦ k = k + 1; ⑧ } ⑨ }
- 给出下列代码,哪行在编译时可能会有错误?① public void modify(){② int i, j, k;③ i = 100;④ while ( i > 0 ){⑤ j = i * 2;⑥ System.out.println (" The value of j is " + j );⑦ k = k + 1;⑧ }⑨ } A: 4 B: 6 C: 7 D: 8
- 中国大学MOOC: 给出下列的代码,( )行在编译时可能会有错误。 ① public void modify() {② int i, j, k; ③ i = 100; ④ while ( i > 0){ ⑤ j = i * 2; ⑥ System.out.println ( The value of j is + j ); ⑦ k = k + 1; ⑧ }⑨ }