A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 涵門子弟 中级黑马   /  2015-11-18 20:18  /  627 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

  1. public class tuxing {
  2.              public static void main(String[] args){
  3.               for(int x=0;x<9;x++){
  4.                                            for(int z=0;8-z>x;z++)
  5.                                                         System.out.print(' ');
  6.                                            for(int y=0;y<9;y++)
  7.                                                         if((x+y)==8||(x-y)==0||y==0||y==8||x==0||x==8)
  8.                                                                System.out.print("* ");
  9.                                                        else
  10.                                                                System.out.print("  ");
  11.                                       System.out.println();
  12.                               }       
  13.                }
  14. }
复制代码

QQ截图20151118202118.png (1.07 KB, 下载次数: 13)

QQ截图20151118202118.png

2 个回复

倒序浏览

RE: 关于打印对角线四边形图形


  1. <p> </p><div class="blockcode"><blockquote>public class tuxing {
  2.         public static void main(String[] args){
  3.                 for(int x=0;x<9;x++){
  4.                         for(int z=0;8-z>x;z++)
  5.                                 System.out.print(' ');
  6.                         for(int y=0;y<9;y++)
  7.                                 if((x+y)==8||(x-y)==0||y==0||y==8||x==0||x==8)
  8.                                         System.out.print("* ");
  9.                                 else
  10.                                         System.out.print("  ");
  11.                         System.out.println();
  12.                 }       
  13.         }
  14. }
复制代码


回复 使用道具 举报
加油呀!!
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马