/*
*
**
***
****
*****
*****
****
***
**
*
*
***
*****
*******
*********
*/
class Test
{
public static void main(String[] args)
{ //正的直角三角形
for(int x = 0; x < 5; x++){
for(int y = 0; y <=x; y++){
System.out.print("*");
}
System.out.println();
}
System.out.println("---------");
//反的直角三角形
for(int x = 0; x <5; x++){
for(int y = x; y<5; y++){
System.out.print("*");
}
System.out.println();
}
System.out.println("---------");
//等边三角形
for(int x = 0; x <5; x++){
for(int y = x+1; y<5; y++){
System.out.print(" ");//输出等腰三角形左面的空格。
}
for(int a = 0; a<(x*2+1);a++){
System.out.print("*");
}
System.out.println();
}
}
}
|
|