返回列表 發帖

[挑戰題(中)] 小星星 13-數字金字塔1

本帖最後由 鄭繼威 於 2022-8-10 18:16 編輯

就拿數字金字塔當作我們小星星的結尾吧~
請參考之前做的小星星 7-135三角形2
跟135的小星星其實都一樣
1. 只是*變數字而已
2. 有9層之高

  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.     for(_____________)
  7.     {
  8.         for(_____________)
  9.         {
  10.              cout<<" ";
  11.         }
  12.         for(_____________)
  13.         {
  14.              cout<<"*";        
  15.         }
  16.         cout<<endl;
  17.     }
  18.     system("pause");
  19.     return 0;
  20. }
複製代碼
本帖隱藏的內容需要積分高於 1 才可瀏覽
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

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

TOP

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

TOP

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

TOP

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

TOP

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

TOP

本帖最後由 黃柏青 於 2022-7-20 21:03 編輯
  1. #include <iostream>
  2. #include <cstdlib>
  3. using namespace std;
  4. int main(){
  5.    for(int i=1; i<=9; i++){
  6.        for(int k=8; k>=i; k--){
  7.             cout<<" ";
  8.             }
  9.        for(int j=1; j<=2*i-1; j++){
  10.    
  11.             cout<<i;
  12.             }
  13.        cout<<endl;
  14.    }
  15.    system("pause");
  16.    return 0;
  17. }
複製代碼

TOP

返回列表