返回列表 發帖
#include<iostream>

using namespace std;

int main()

{

   for(int i=50; i<=100; i+=5)

   {

         cout<<i<<endl;

   }

   system("pause");

   return 0;

}

TOP

返回列表