我按本節(jié)案例輸出了一下,為什么輸出不對(duì)
public class HelloWorld {
?? public static void main(String[] args) {
?for(int i=1;i<=3;i++){
???? for(int j=1;j<=8;j++){
??System.out.println("*");}
?System.out.println();
????
?}
?}
}
輸出結(jié)果是
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
求解
2019-09-24