?? 實驗1.java
字號:
package shiyan1;
/**
* <p>Title: </p>
* <p>Description: </p>
* <p>Copyright: Copyright (c) 2008</p>
* <p>Company: </p>
* @author not attributable
* @version 1.0
*/
public class 實驗1 {
public static void main(String[] args) {
System.out.println("* " + "1 " + "2 " + "3 " + "4 " + "5 " + "6 " +
"7 " + "8 " + "9 ");
int i,j=1;
for(i=1;i<10;i++) {
System.out.print(i+" ");
for(j=1;j<=i;j++){
System.out.print(i*j+" ");}
System.out.println();
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -