黑马程序员技术交流社区

标题: 记录——for循环练习三角形 [打印本页]

作者: 迷路的小孩儿    时间: 2015-7-12 15:17
标题: 记录——for循环练习三角形
  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. }
复制代码


作者: 迷路的小孩儿    时间: 2015-7-12 15:46
  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. }
复制代码

作者: 迷路的小孩儿    时间: 2015-7-12 15:59
  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. }
复制代码





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2