Board logo

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

作者: tonyh    時間: 2014-10-25 10:50     標題: 小星星 2

本帖最後由 tonyh 於 2014-11-8 10:58 編輯

[attach]1039[/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<=6-i; j++)
  9.         {
  10.             cout<<"*";     
  11.         }
  12.         cout<<endl;
  13.     }
  14.     system("pause");
  15.     return 0;
  16. }
複製代碼

作者: 梁和雋    時間: 2014-10-25 10:53

本帖最後由 梁和雋 於 2014-10-25 11:09 編輯
  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=5; j>=i; j--)
  9.         {
  10.              cout<<"*";            
  11.         }
  12.         cout<<endl;   
  13.     }
  14.     system ("pause");
  15.     return 0;
  16. }
複製代碼
............
作者: 李大全    時間: 2014-10-25 10:54

  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=5; j>=i; j--)
  9.         {
  10.              cout<<"*";            
  11.         }
  12.         cout<<endl;   
  13.     }
  14.     system ("pause");
  15.     return 0;
  16. }
複製代碼

作者: 謝瀞儀    時間: 2014-10-25 11:18

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

作者: 洪振庭    時間: 2014-10-25 11:19

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

作者: 李知易    時間: 2014-11-1 10:30

  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=5; j>=i; j--)
  9.         {
  10.              cout<<"*";            
  11.         }
  12.         cout<<endl;   
  13.     }
  14.     system ("pause");
  15.     return 0;
  16. }
複製代碼





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