返回列表 發帖
  1. #include<iostream>
  2. using namespace std;
  3. int main()
  4. {
  5.      for(int i=2; i<=1000; i+=2)
  6.      {
  7.           cout<<"☆☆☆"<<endl;
  8.           cout<<"☆"<<i<<"☆"<<endl;
  9.           cout<<"☆☆☆"<<endl;
  10.           system("pause");
  11.      }
  12.      system("pause");
  13.      return 0;   
  14. }
複製代碼

TOP

返回列表