本帖最后由 朱东方 于 2012-7-7 03:20 编辑
class Text1
{
public static void main(String[] args)
{
/*
*****
*****
*****
*/
for(int x=0;x<3;x++)
{
for(int y=0;y<5;y++)
{
System.out.print("*");
}
System.out.println();
}
//------------------------------------------------
System.out.println("--------------------------------");
/*
*
**
***
****
*****
*/
for(int x=0;x<5;x++)
{
for(int y=0;y<x+1;y++)
{
System.out.print("*");
}
System.out.println();
}
//------------------------------------------------
System.out.println("--------------------------------");
/*
*****
****
***
**
*
*/
for (int x=0;x<5 ;x++ )
{
for (int y=0;y<5-x ;y++ )
{
System.out.print("*");
}
System.out.println();
}
//------------------------------------------------
System.out.println("--------------------------------");
/*
1
12
123
1234
12345
*/
for (int x=0;x<5 ;x++ )
{
for (int y=0;y<x+1;y++ )
{
System.out.print(y+1);
}
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+"="+y*x+"\t");
}
System.out.println();
}
//------------------------------------------------
System.out.println("--------------------------------");
/*
----*
---* *
--* * *
-* * * *
* * * * *
*/
for (int x=0;x<5 ;x++ )
{
for (int y=0;y<4-x ;y++ )
{
System.out.print(" ");
}
for (int z=0;z<x+1 ;z++ )
{
System.out.print("* ");
}
System.out.println();
}
//------------------------------------------------
System.out.println("--------------------------------");
/*
* * * * *
-* * * *
--* * *
---* *
----*
*/
for (int x=0;x<5 ;x++ )
{
for (int y=0;y<x ;y++ )
{
System.out.print(" ");
}
for (int z=0;z<5-x ;z++ )
{
System.out.print("* ");
}
System.out.println();
}
//------------------------------------------------
System.out.println("--------------------------------");
/*
---*
--***
-*****
*******
*****
***
*
*/
//上部分
for(int x=1;x<=4;x++)
{
for(int y=0;y<4-x;y++)
{
System.out.print(" ");
}
for(int z=0;z<x*2-1;z++)
{
System.out.print("*");
}
System.out.println();
}
//下部分
for(int x=1;x<=3;x++)
{
for(int y=0;y<x;y++)
{
System.out.print(" ");
}
for(int z=7-2*x;z>0;z--)
{
System.out.print("*");
}
System.out.println();
}
//System.out.println("Hello World!");
}
}
虽然很简单,但都是自己做出来的,蛮有成就感的。
兄弟们见笑了。 |