/**
*打印一个5行的直角三角形(至少2种方法)
*@author 马涛
* April 14th,2009
*/
public class Triangle1
{
public static void main(String[] args)
{
// 用两个for循环来创建正三角形
System.out.println("用两个for循环来创建正三角形");
for(int a = 5; a>=0;a--)
{
for(int b = 1; b<=a; b++)
{
System.out.print("* ");
}
System.out.println();
}
// 用while循环来创建正三角形
System.out.println("用while循环来创建正三角形");
int c =5 ,d;
while(c>=1)
{
d = 1;
while(d<=c)
{
System.out.print("* ");
d++;
}
System.out.println();
c--;
}
}
}
显示结果:
* * * * *
* * * *
* * *
* *
*