返回列表 發帖
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
  int red=0;
  for(int i=1;i<=100;i=i+1)
{
  red=red+i;
}


  cout<<red<<endl;
  system("pause");
  return 0;   
}

TOP

返回列表