入门训练 序列求和

http://lx.lanqiao.cn/problem.page?gpid=T2
公式n*(n+1)/2

#include
using namespace std;

int main(){
    long long n;
    cin >> n;
    cout << fixed; // 不使用科学计数法 
    cout << n*(n+1)/2;
    
    return 0;
}

你可能感兴趣的:(入门训练 序列求和)