Board logo

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

作者: tonyh    時間: 2015-5-15 20:18     標題: 小星星 1

本帖最後由 tonyh 於 2015-5-15 20:49 編輯

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

[attach]1240[/attach]
  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. #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. }
複製代碼

作者: 沈子耕    時間: 2015-5-15 20:28

  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. }
複製代碼

作者: 曾挺桂    時間: 2015-5-15 20:42

  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. }
複製代碼

作者: 陳思惟    時間: 2015-5-15 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 j=1; j<=i; j++)
  9.          {
  10.              cout<<"*";
  11.          }
  12.          cout<<endl;
  13.     }
  14.     system("pause");
  15.     return 0;   
  16. }
複製代碼

作者: 林侑成    時間: 2015-5-15 20:47

  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. }
複製代碼





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