public class XingHaoThree
{
public static void main(String[] args)
{
for(int i=10;i>0;i--)
{
for(int j=i;j>1;j--)
{
System.out.print("*");
}
System.out.println("");
}
}
}
/*
此图是运行结果:
**********
*********
********
*******
******
*****
****
***
**
*
*/