利用for循環打印 *? 表?
*=
*=? *=
*=? *=? *=
*=? *=? *=? *=
*=? *=? *=? *=? *=
*=? *=? *=? *=? *=? *=
*=? *=? *=? *=? *=? *=? *=
*=? *=? *=? *=? *=? *=? *=? *=
*=? *=? *=? *=? *=? *=? *=? *=? *=
//循環嵌套打印九九乘法表
public class NineNine{
public static void main(String[]args){
Systemoutprintln();
for (int j=;j<;j++){
for(int k=;k<;k++) { //老師的做法判斷語句裡的 k<=j省去下列的if語句
if (k>j) break; //此處用 continue也可以只是效率低一點
Systemoutprint(; ;+k+;X;+j+;=;+j*k);
}
Systemoutprintln();
}
}
}
From:http://tw.wingwit.com/Article/program/Java/Javascript/201404/30463.html