#14586:


100318 (曹吉百)

學校 : 臺北市立建國高級中學
編號 : 69094
來源 : [210.71.78.244]
最後登入時間 :
2020-11-04 13:56:05
b558. 求數列第 n 項 | From: [203.72.178.252] | 發表日期 : 2018-07-25 13:08

#include <bits/stdc++.h>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */

int main(int argc, char** argv) {
int n,a[501]={1};
for(int k=1; k<=500; ++k) a[k] = a[k-1]+(k-1);
while(cin>>n)
{
cout << a[n] << endl;
}
return 0;
}

 
ZeroJudge Forum