标签:bsp public ++ ring out int class system code
1 public class 常数变易法 { 2 //*************************************常数变易法************************** 3 public static void main(String[] args) { 4 for(int k=0;k<12;k++) { 5 for(int i=0; i<12-k;i++)System.out.print(" "); 6 for(int j=0;j<k+1;j++)System.out.print("* "); 7 System.out .println(); 8 9 } 10 11 /*//****************************最初****************************** 12 * System.out.println(" *"); 13 * System.out.println(" * *"); 14 * System.out.println(" * * *"); 15 */ 16 /*//********************************后来******************************* 17 * for(int i=0;i<7;i++)System.out.print(" "); 18 * for(int j=0;j<3;j++)System.out.print("* " ); 19 */ 20 /*//*************************************最终*************************** 21 * for(int k=0;k<9;k++){ k 0 1 2 3 4 22 * for(int i=0;i<?;i++)System.out.print(" "); ? 7 6 5 4 3 ?=7-k 23 * for(int j=0;j<??;j++)System.out.print("* "); ?? 1 2 3 4 5 ??=k+1 24 * 25 * } 26 */ 27 28 29 } 30 }
标签:bsp public ++ ring out int class system code
原文地址:https://www.cnblogs.com/lang-zi/p/12411375.html