给出下列代码,哪行在编译时可能会有错误? ①  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; ⑧    } ⑨  }

时间:2022-11-12 13:03:46

相似题目