/**
* 2015年3月21日下午9:36:23
* @author season 测试已通过,望采纳
*
*/
public class PrintShape {
/**
* printMyShape TODO 输出倒三角形
* @param line 输出这个三角形有多少行(高度)
*/
public static void printMyShape(int line){
for(int index =0; index < line ; index++){//控制输出多少行
for(int space =0; space < index; space++)//输出空格
System.out.print(" ");
for(int mark=0; mark<(line-index); mark++)//每行输出多少个 *
System.out.print("*");
System.out.println();//换行输出
}
}
public static void main(String[] args){
printMyShape(5);
}
}