5行5列的菱形

public class 菱形 { public static void main(String[] args) { //菱形分兩個循環寫,一個是上半部分的升序,一個下半部分降序,找到其中規律 for (int a = 1; a < 4; a++) { int kong = 3 - a; //上半部分的空格 for (int b = kong; b > 0; b–) { System.out.pr
相關文章
相關標籤/搜索