?? testmultable.java
字號:
//TestmulTable.java:Display a multiiplication table
public class TestMulTable{
//Main method
public static void main(String[] arguments){
//Display the table heading
System.out.println(" Multiplication Table");
System.out.println("------------------------");
//Display the number title
System.out.println(" |");
for(int j=1;j<=9;j++)
System.out.println(" "+j);
System.out.println("");
//Print table body
for (int i=1;i<=9;i++ ){
System.out.println(i+"|");
for(int j=1;j<=9;j++){
//Display the product and align properly
if(i*j<10)
System.out.print(" "+ i*j);
else
System.out.print(" " +i*j);
}
System.out.println();
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -