返回列表 發帖
  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.         for(int c=1;c<=4;c++)
  6.     {
  7.         for(int space=2;space<=c;space++)
  8.         {
  9.             cout<<" ";
  10.         }
  11.         for(int star=1;star<=10;star++)
  12.         {
  13.                 cout<<"*";
  14.         }
  15.         cout<<endl;
  16.     }
  17. }
複製代碼

TOP

返回列表