1. 程式人生 > >二重迴圈_列印倒三角形

二重迴圈_列印倒三角形

import java.util.Scanner;
public class Demo{
public static void main(String[] args){
//列印倒三角形
Scanner input = new Scanner(System.in);
System.out.print("請輸入三角形的行數:");
int row = input.nextInt();
for(int i=row; i>0; i--){
for(int j=i; j>0; j--){
System.out.print("*");
}
System.out.print("\n");
}
}
}

/*-------------------

請輸入三角形的行數:6
******
*****
****
***
**
*

-------------------*/