本帖最后由 杨兴庭 于 2013-8-6 21:19 编辑
---- *
--- * *
-- * * *
- * * * *
* * * * *
今天在做这个练习题,要打印这个图形,代码在下面- class ForForTest1
- {
- public static void main(String[] args)
- {
- for(int x=0;x<5;x++)
- {
- for(int y=x+1;y<5;y++)
- {
- System.out.print("-");
- }
- for(int z=0;z<=x;z++)
- {
- System.out.print(" *");
- }
- System.out.println("");
- }
- }
- }
复制代码 打印出来的结果请附图,注意:最后一行前面空了个格,有没有方法解决吧空格去掉
|
|