※J.Y Chen 的個人部落格 ※

Just Follow Our Heart And We will shine!

67 瀏覽人次

【程式語言】JAVA的第四堂課 |直角三角形

Published: in JAVA by .

public class hw3 {
    public static void main(String[] args) {

        for(int i = 1 ; i <= 5 ;i++) {
            for(int j = 1; j <= i ; j++) {
                System.out.print(j);
            }
            System.out.println("");
        }
    }
}

Result:

©2019 - 2024 Henry Chen