1. 程式人生 > >javaDay05_小練習2

javaDay05_小練習2

package zrs;

public class javaDay05_2 {
public static void main(String[] args) {
//需求:輸出下面的圖形
/*54321
*5432
*543
*54
*5
* */
for(int x=1;x<=5;x++) {
for(int y=5;y>=x;y--) {
System.out.print(y);
}
System.out.println();
}
System.out.println("--");

//需求,輸出99乘法表
/*1*1=1
*1*2=2 2*2=4
*1*3=3 2*3=6 3*3=9
* */
//大學的最開始學習的時候,使用C語言做這題的時候,感覺真的難,但是現在,思想變了,就不是很難了
for(int x=1;x<=9;x++) {
for(int y=1;y<=x;y++) {
System.out.print(y+"*"+x+"="+(x*y)+"\t");
}
System.out.println();
}


//輸出帶雙引號的 "hello world"
System.out.println("\"hello world\"");

}
}