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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  1. /*
  2. 需求:在控制台输如下的形状
  3. ----*
  4. ---**
  5. --***
  6. -****
  7. *****
  8. */
  9. class FunctionDemo {
  10. public static void main(String[] args) {
  11. for (int x =0;x <4;x++) {
  12. for (int y=x;y<4;y++) {
  13. System.out.print("-");
  14. }
  15. for (int m=0;m<=x;m++){
  16. System.out.print("*");
  17. }
  18. System.out.println();

  19. }
  20. for (int w=0;w<5;w++)
  21. System.out.print("*");

  22. }

  23. }
复制代码

2 个回复

倒序浏览
  1. /*
  2.         需求:在控制台输如下的形状
  3.                 * * * * *
  4.                  * * * *
  5.                   * * *
  6.                    * *
  7.                     *
  8. */
  9. class FunctionDemo {
  10.         public static void main(String[] args) {
  11.                 for(int x=0;x<5;x++) {
  12.                         for (int y=0;y<x;y++) {
  13.                                 System.out.print(" ");
  14.                         }
  15.                         for (int z=x;z<5;z++) {
  16.                                 System.out.print("* ");
  17.                         }
  18.                         System.out.println();
  19.                 }
  20.                
  21.         }        

  22. }
复制代码
回复 使用道具 举报
  1. /*
  2.         需求:在控制台输如下的形状
  3.                 ----*
  4.                 ---* *
  5.                 --* * *
  6.                 -* * * *
  7.                 * * * * *
  8. */
  9. class FunctionDemo {
  10.         public static void main(String[] args) {
  11.                 for(int x=0;x<5;x++) {
  12.                         for (int y =x;y<4;y++) {
  13.                                 System.out.print("-");
  14.                         }
  15.                         for (int z=0;z<=x;z++){
  16.                                 System.out.print("* ");
  17.                         }
  18.                         System.out.println();
  19.                 }
  20.                
  21.         }        

  22. }
复制代码
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马