用Java打印九九乘法表(使用while语句)
int row = 1;
while (row<=9){
int col = 1;
while (col <= row){
System.out.print(col +""+ row +"="+colrow+"\t");
col++;
}
row++;
System.out.println();
}
第一行一个,第二行两个,第九行九个
外层一到九
内层一到外层,等于外层时记得跟上换行
while (1){
System.out.print("九九乘法表");
}
百度懂不懂