返回列表 發帖

{挑戰題}蝴蝶

本帖最後由 李泳霖 於 2022-7-28 16:26 編輯

請以for迴圈寫出下列蝴蝶形狀(提示:三個迴圈)
  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {

  5.         int a;
  6.         cout<<"Input:";
  7.         cin>>a;

  8.         for(int i=??; i<??; i??)
  9.         {
  10.              for(int k=??; k<=??; k??)
  11.                  cout<<"*";
  12.              for(int j=??; j<=??; j??)
  13.                  cout<<" ";
  14.              for(int k=??; k<=??; k??)
  15.                  cout<<"*";
  16.              cout<<endl;
  17.         }
  18.         for(int i=??; i<??; i??)
  19.         {
  20.              for(int k=??; k<=??; k??)
  21.                  cout<<"*";
  22.              for(int j=??; j<=??; j??)
  23.                  cout<<" ";
  24.              for(int k=??; k<=??; k??)
  25.                  cout<<"*";
  26.              cout<<endl;
  27.         }
  28.     system("pause");
  29.     return 0;
  30. }
複製代碼
附件: 您需要登錄才可以下載或查看附件。沒有帳號?註冊

返回列表