返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main()
  5. {
  6.         int a=1,b=1;
  7.     cout<<"請輸入一整數: ";
  8.     cin>>a;
  9.     int c=1,d=1;
  10.     while(b<=a)
  11.     {
  12.             cout<<"請輸入星星數量: ";
  13.         cin>>c;
  14.         d=1;//重要
  15.         while(d<=c)
  16.         {
  17.                 cout<<"*";
  18.             d++;
  19.                 }
  20.         b++;
  21.         cout<<endl;
  22.     }
  23.     system ("pause");
  24.     return 0;
  25. }
複製代碼

TOP

返回列表