Board logo

標題: 巢狀迴圈 - 小星星 (一) [打印本頁]

作者: tonyh    時間: 2019-8-5 11:44     標題: 巢狀迴圈 - 小星星 (一)

利用巢狀回圈, 將符號*整齊排列成如下之三角形:

  1. public class Ch19
  2. {
  3.     public static void main(String args[])
  4.     {
  5.          for(int i=1; i<=5; i++)
  6.          {
  7.              for(int j=1; j<=5-i; j++)
  8.                  System.out.print(" ");
  9.              for(int k=1; k<=2*i-1; k++)
  10.                  System.out.print("*");
  11.              System.out.println();
  12.          }
  13.     }
  14. }
複製代碼

作者: 莊鈞程    時間: 2019-8-5 11:57

  1. public class Ch10 {
  2.         public static void main(String[] args) {
  3.                 for(int i=1;i<=5;i++){
  4.                     for(int j=1;j<=5-i;j++)
  5.                             System.out.print(" ");
  6.                     for(int k=1;k<=2*i-1;k++)
  7.                         System.out.print("*");
  8.                     System.out.println();
  9.                 }
  10.         }
  11. }
複製代碼

作者: 黃永恩    時間: 2019-8-5 11:58

  1. import java.util.Scanner;

  2. public class Ch01 {

  3.         public static void main(String[] args) {
  4.                 for(int i=1;i<=5;i++){
  5.                         for(int j=1;j<=5-i;j++){
  6.                                 System.out.print(" ");
  7.                         }
  8.                         for(int j=1;j<=2*i-1;j++){
  9.                                 System.out.print("*");
  10.                         }
  11.                         System.out.println();
  12.                 }
  13.         }
  14. }
複製代碼

作者: 張郁庭    時間: 2019-8-5 11:58

  1. public class Ch01 {

  2.         public static void main(String[] args) {
  3.             for(int i=1; i<=5; i++)
  4.             {
  5.                     for(int j=1; j<=5-i; j++)
  6.                         System.out.print(" ");
  7.                     for(int k=1; k<=2*i-1; k++)
  8.                         System.out.print("*");
  9.                     System.out.println();
  10.             }
  11.                    
  12.         }
  13. }
複製代碼

作者: 許育禎    時間: 2019-8-5 11:58

  1. public class CH12 {
  2.         public static void main(String args[])
  3.         {
  4.             for(int i=1;i<=5;i++)
  5.             {
  6.                     for(int j=1;j<=5-i;j++)
  7.                     {
  8.                         System.out.print(" ");       
  9.                     }
  10.                     for(int j=1;j<=2*i-1;j++)
  11.                     {
  12.                         System.out.print("*");       
  13.                     }
  14.                     System.out.println();       
  15.             }
  16.         }
  17. }
複製代碼

作者: 許育慈    時間: 2019-8-5 11:59

  1. public class Ch11 {
  2.         public static void main(String[] args) {
  3.                 for(int i=1;i<=5;i++){
  4.                         for(int j=1;j<=5-i;j++){
  5.                                 System.out.print(" ");       
  6.                         }
  7.                         for(int k=1;k<=i*2-1;k++){
  8.                                 System.out.print("*");       
  9.                         }
  10.                         System.out.println();
  11.                 }      
  12.         }
  13. }
複製代碼

作者: 余奕廷    時間: 2019-8-5 12:00

  1. public class Ch02 {

  2.         public static void main(String[] args) {
  3.                 for(int i=1; i<=5; i++)
  4.                 {
  5.                         for(int j=1; j<=5-i; j++)
  6.                         {
  7.                                 System.out.print(" ");
  8.                         }
  9.                         for(int k=1; k<=2*i-1; k++)
  10.                         {
  11.                             System.out.print("*");       
  12.                         }
  13.                         System.out.println();
  14.                 }
  15.         }
  16. }
複製代碼

作者: 余映均    時間: 2019-8-5 12:00

  1. public class Ch12 {

  2.         public static void main(String[] args) {
  3.         for(int i=1; i<=5; i++)
  4.         {
  5.                 for(int j=1; j<=5-i; j++)
  6.                         System.out.print(" ");
  7.                 for(int k=1; k<=i*2-1; k++ )
  8.                         System.out.print("*");
  9.                 System.out.println();
  10.         }       
  11.         }
  12. }
複製代碼

作者: 黃芊嬡    時間: 2019-8-5 12:00

  1. public class Ch10
  2. {

  3.         public static void main(String[] args)
  4.         {
  5.                 for(int i=1;i<=5;i+=1)
  6.                 {
  7.                         for(int j=1;j<=5-i;j+=1)
  8.                                 System.out.print(" ");
  9.                         for(int k=1;k<=i*2-1;k+=1)
  10.                                 System.out.print("*");
  11.                         System.out.println();       
  12.                 }                       
  13.         }
  14. }
複製代碼

作者: 鄭宇崴    時間: 2019-8-5 12:00

  1. public class Ch19
  2. {
  3.     public static void main(String[] args)
  4. {
  5.            for(int i=1;i<=5;i++)
  6. {
  7.            for(int j=1;j<=5-i;j++)
  8.            System.out.print(" ");
  9.            for(int k=1;k<=2*i-1;k++)
  10.            System.out.print("*");
  11.            System.out.println();
  12. }
  13. }
  14. }
複製代碼

作者: 張嘉栩    時間: 2019-8-5 12:01

  1. public class Ch19
  2. {
  3.     public static void main(String args[])
  4.     {
  5.          for(int i=1; i<=5; i++)
  6.          {
  7.              for(int j=1; j<=5-i; j++)
  8.                  System.out.print(" ");
  9.              for(int k=1; k<=2*i-1; k++)
  10.                  System.out.print("*");
  11.              System.out.println();
  12.          }
  13.     }
  14. }
複製代碼

作者: 何育翔    時間: 2019-8-5 12:03

  1. public class Ch10
  2. {
  3.         public static void main(String[] args) {
  4.                 {
  5.                         for(int i=1;i<=5;i++)
  6.                         {
  7.                                 for(int j=1; j<=5-i;j++)
  8.                                         System.out.print(" ");
  9.                                 for(int k=1; k<=2*i-1;k++)
  10.                                         System.out.print("*");
  11.                                 System.out.println();

  12.                         }

  13.                 }

  14.         }

  15. }
複製代碼

作者: 葉俠愷    時間: 2019-8-5 12:04

  1. public class Ch11 {

  2.         public static void main(String[] args) {
  3.                 for(int i=1;i<=5;i++)
  4.                 {
  5.                         for(int k=1;k<=5-i;k++)
  6.                         {
  7.                                 System.out.print(" ");
  8.                         }
  9.                         for(int s=1;s<=i*2-1;s++)
  10.                         {
  11.                                 System.out.print("*");
  12.                         }
  13.                         System.out.println();
  14.                 }
  15.         }

  16. }
複製代碼

作者: 蔡明蓉    時間: 2019-8-5 12:04

  1. public class Ch12
  2. {  
  3.         public static void main(String[] args)
  4.         {
  5.                 for(int i=1;i<=10;i+=1)
  6.                 {
  7.                         for(int j=1;j<=10-i;j+=1)
  8.                         {
  9.                                 System.out.print(" ");
  10.                         }       
  11.                         for(int k=1;k<=2*i-1;k++)
  12.                         {
  13.                                 System.out.print("^");
  14.                         }
  15.                         System.out.println();                                            
  16.                 }            
  17.         }
  18. }
複製代碼

作者: 潘憶承    時間: 2019-8-5 12:04

  1. public class Ch02
  2. {
  3.         public static void main(String[] args) {
  4.             for(int i=1;i<=5; i++)
  5.             {
  6.                     for(int j=1;j<=5-j;j++)
  7.                             System.out.print(" ");
  8.                     for(int k=1;k<=2*i-1;k++)
  9.                             System.out.print("*");
  10.                     System.out.println();                  
  11.             }
  12.         }
  13. }
複製代碼

作者: 曾暘竣    時間: 2019-8-5 12:04

  1. public class Ch10
  2. {
  3.     public static void main(String args[])
  4.     {
  5.          for(int i=1; i<=5; i++)
  6.          {
  7.              for(int j=1; j<=5-i; j++)
  8.                  System.out.print(" ");
  9.              for(int k=1; k<=2*i-1; k++)
  10.                  System.out.print("*");
  11.              System.out.println();
  12.          }
  13.     }
  14. }
複製代碼

作者: 曾暘竣    時間: 2019-8-5 14:26

  1. public class Ch10{
  2.     public static void main(String args[])
  3.     {
  4.          for(int i=1; i<=4; i++)
  5.          {
  6.              for(int j=1; j<=i-1; j++)
  7.              {
  8.                  System.out.print(" ");
  9.              }
  10.              for(int k=1; k<=7-(i-1); k++)
  11.              {
  12.                  System.out.print("*");
  13.              }
  14.              System.out.println();
  15.          }
  16.     }
  17. }
複製代碼





歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/) Powered by Discuz! 7.2