求1到n的和 题解:
#include <iostream>
#include <algorithm>
#include <cmath>
#include <cstring>
using namespace std;
int n, res; // 定义变量
int main(){
cin >> n; // 输入整数n
// 计算1~n的和
for (int i = 1; i <= n; ++i) {
res += i; // 将i加到res中
}
cout << res << endl; // 输出结果
return 0; // 程序结束
}
登录后发布评论
暂无评论,来抢沙发