返回列表 發帖
  1. #include<iostream>
  2. #include<cstdlib>
  3. using namespace std;
  4. int main(){
  5.     int smth=0;
  6.     for(int a=1; a<=100; a++){
  7.     smth=smth+a;
  8.     }
  9.     cout<<"1+2...+100="<<smth<<endl;
  10.     system ("pause");
  11.     return 0;}
複製代碼
Attention Seeker </3

TOP

返回列表