文章

15

粉丝

142

获赞

26

访问

19.2k

头像
求1到n的和 题解:
P1133 北京大学机试题
发布于2023年5月4日 16:40
阅读数 1.1k

#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; // 程序结束
}

 

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发