Board logo

標題: 小星星 1 [打印本頁]

作者: tonyh    時間: 2016-4-30 11:24     標題: 小星星 1

本帖最後由 tonyh 於 2018-6-20 17:08 編輯

試運用巢狀迴圈完成以下圖案:

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    for(______________)
  7.    {
  8.        for(______________)
  9.        {
  10.             cout<<"*";
  11.        }
  12.        cout<<endl;
  13.    }
  14.    system("pause");
  15.    return 0;
  16. }
複製代碼
  1. using namespace std;
  2. int main()
  3. {
  4.    for(int i=1; i<=5; i++)
  5.    {
  6.        for(int j=1; j<=i; j++)
  7.        {
  8.             cout<<"*";
  9.        }
  10.        cout<<endl;
  11.    }
  12.    system("pause");
  13.    return 0;
  14. }
複製代碼

作者: 康湍榆    時間: 2016-4-30 11:33

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    for(int i=1; i<=5; i++)
  7.    {
  8.        for(int j=1; j<=i; j++)
  9.        {
  10.             cout<<"*";
  11.        }
  12.        cout<<endl;
  13.    }
  14.    system("pause");
  15.    return 0;
  16. }
複製代碼

作者: 高允懋    時間: 2016-4-30 11:33

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    for(int i=1;i<=5;i++)
  7.    {
  8.        for(int j=1;j<=i;j++)
  9.        {
  10.             cout<<"*";
  11.        }
  12.        cout<<endl;
  13.    }
  14.    system("pause");
  15.    return 0;
  16. }
複製代碼

作者: 黃茂勛    時間: 2016-4-30 11:33

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    for(int i=1; i<=5; i++)
  7.    {
  8.        for(int k=1; k<=i; k++)
  9.        {
  10.             cout<<"*";
  11.        }
  12.        cout<<endl;
  13.    }
  14.    system("pause");
  15.    return 0;
  16. }
複製代碼

作者: 陸長辰    時間: 2016-4-30 11:34

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    for(int i=1; i<=5; i++)
  7.    {
  8.        for(int j=1; j<=i; j++)
  9.        {
  10.             cout<<"*";
  11.        }
  12.        cout<<endl;
  13.    }
  14.    system("pause");
  15.    return 0;
  16. }
複製代碼

作者: 任立宇    時間: 2016-4-30 11:34

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    for(int i=1; i<=5;i++)
  7.    {
  8.        for(int j=1; j<=i; j++)
  9.        {
  10.             cout<<"*";
  11.        }
  12.        cout<<endl;
  13.    }
  14.    system("pause");
  15.    return 0;
  16. }
複製代碼

作者: 張孟軒    時間: 2016-4-30 11:38

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    for(int i=1;i<=5;i++)
  7.    {
  8.        for(int j=1;j<=i;j++)
  9.        {
  10.             cout<<"*";
  11.        }
  12.        cout<<endl;
  13.    }
  14.    system("pause");
  15.    return 0;
  16. }
複製代碼

作者: 陳泓瑜    時間: 2016-5-2 20:45

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main ()
  5. {
  6.    
  7.    for(int a=1; a<=5; a++)
  8.    {
  9.     for(int b=1; b<=a; b++)
  10.     {
  11.        cout<<"*";               
  12.     }
  13.      cout<<endl;
  14.    }  
  15.    system("pause");
  16.    return 0;   
  17. }   
複製代碼

作者: 方宥鈞    時間: 2016-5-2 20:46

  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.    for(int i=1;i<=5;i++)
  7.    {
  8.        for(int k=1;k<=i;k++)
  9.        {
  10.             cout<<"*";
  11.        }
  12.        cout<<endl;
  13.    }
  14.    system("pause");
  15.    return 0;
  16. }
複製代碼





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