class Fortest2
{
public static void main(String[] args)
{
/*
打印图案:
*****
****
***
**
*
*/
//int z=5;
for(int x=5;x>0;x--)
{
for(int y=1;y<=x;y++)
{
System.out.print("*");
}
System.out.print('\n');
// z--;
}
System.out.println("-------------------");
/*
打印图案:
*
**
***
****
*****
*/
//z=1;
for(int x=1;x<=5;x++)
{
for(int y=1;y<=x;y++)
{
System.out.print("*");
}
// z++;
System.out.print('\n');
}
System.out.println("-------------------");
/*
打印:
1
12
123
1234
12345
*/
for(int x=1;x<=5;x++)
{
for(int y=1;y<=x;y++)
{
System.out.print(y);
}
System.out.println();
}
System.out.println("-------------------");
/*
打印:
1*1=1
1*2=2 2*2=4
1*3=3 2*3=6 3*3=9
*/
for(int x=1;x<=9;x++)
{
for(int y=1;y<=x;y++)
{
System.out.print(y+"*"+x+"="+(x*y)+"\t");
}
System.out.println();
}
}
}
|
|