其他分享
首页 > 其他分享> > 202012-1 期末预测之安全指数

202012-1 期末预测之安全指数

作者:互联网

202012-1 期末预测之安全指数


本题链接202012-1 期末预测之安全指数

本博客给出本题截图
在这里插入图片描述

C++

#include <iostream>
#include <algorithm>

using namespace std;

int main()
{
    int n;
    cin >> n;
    int res = 0;

    while (n -- )
    {
        int s, w;
        cin >> s >> w;
        res += s * w;
    }
    cout << max(res, 0) << endl;

    return 0;
}

总结

水题,不解释

标签:预测,int,res,C++,期末,202012,include
来源: https://blog.csdn.net/qq_52156445/article/details/120119309