Board logo

標題: [作業] 小星星 6 [打印本頁]

作者: 方浩葦    時間: 2024-4-4 10:20     標題: [作業] 小星星 6

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

作者: 鄭豊翰    時間: 2024-4-20 10:22

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




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