返回列表 發帖
  1. #include<iostream>   
  2. using namespace std;
  3. int main()

  4. {
  5.         for(int i=200; i<=300; i=i+2)
  6.    {    cout<<i<<endl;
  7.    }
  8.      system("pause");

  9.      return 0;   

  10. }
複製代碼

TOP

#include<iostream>   
using namespace std;
int main()
{
        for(int i=200; i<=400; i=i+2)
   {    cout<<i<<endl;
   }
     system("pause");
     return 0;   
}
複製代碼

TOP

返回列表