本帖最后由 Mr.Cai 于 2015-4-9 14:12 编辑
学习了for循环,自己写个小程序,第一次在这里发帖,求大神勿喷,,
/*
*
* *
* * *
* *
* * *
* * * *
* * * * *
* * * * * *
* * *
* * * *
* * * * *
* * * * * *
* * * * * * *
* * * * * * * *
* * * * * * * * *
*
*
*
*
*
*
*
*
*/
class ChristmasTree
{
public static void main(String[] args)
{
Ye(3,9,0);
Ye(5,9,1);
Ye(7,9,2);
Gan(8,9,1);
}
public static void Ye(int a,int b,int c)
{
for(int x=0;x<a;x++)
{
for(int y=x;y<b-c;y++)
{
System.out.print(" ");
}
for(int z=0;z<=x+c;z++)
{
System.out.print("* ");
}
System.out.println();
}
}
public static void Gan(int a,int b,int c)
{
for(int x=0;x<a;x++)
{
for(int y=0;y<b;y++)
{
System.out.print(" ");
}
for(int z=0;z<c;z++)
{
System.out.print("*");
}
System.out.println();
}
}
}
|