散步
题目链接:SSL 2889
题目大意
求 1+2+…+n。
思路
直接模拟。
代码
#include<cstdio>
#define ll long long
using namespace std;
ll n, ans;
int main() {
// freopen("walk.in", "r", stdin);
// freopen("walk.out", "w", stdout);
scanf("%lld", &n);
for (ll i = 1; i <= n; i++)
ans += i;
printf("%lld", ans);
fclose(stdin);
fclose(stdout);
return 0;
}