/*
打印出这样的图案:
*
**
***
****
*****
******
*/
class ForForTest
{
public static void main(String[] args)
{
/*
for(int h = 0;h < 6;h++)
{
for(int l = 0;l <= h;l++)
{
System.out.print("*");
}
System.out.println();
}
*/
/*
通过定义一个变量,来控制每一行列的个数,对该变量进行操作。
*/
/*
int k=0;
for(int h=0;h<6;h++)
{
for(int l=0;l<=k ;l++)
{
System.out.print("*");
}
k++;
System.out.println();
}
*/
int k=6;
for(int h=0;h<6;h++)
{
for(int l=k;l<=6;l++)
{
System.out.print("*");
}
k--;
System.out.println();
}
System.out.println("*******");
/*
图形:
******
*****
****
***
**
*
*/
/*
通过定义变量来控制每一行列的个数。对该变量进行操作。
*/
/* int z = 6;
for(int x = 0;x < 6;x++)
{
for(int y =0 ;y <z ;y++)
{
System.out.print("*");
}
z--;
System.out.println();
}
*/
/* int z = 0;
for(int x=0 ;x<6;x++)
{
for(int y = z;y<6;y++)
{
System.out.print("*");
}
z++;
System.out.println();
}
*/
for(int x=0;x<6;x++)
{
for(int y=x ;y<6;y++)
{
System.out.print("*");
}
System.out.println();
}
}
} |