CSP历年复赛题-P3954 [NOIP2017 普及组] 成绩

原题链接:https://www.luogu.com.cn/problem/P3954

题意解读:按比例计算乘积。

解题思路:简单模拟。

100分代码:

#include <bits/stdc++.h>
using namespace std;

int main()
{
    int a, b, c;
    cin >> a >> b >> c;
    cout << (a * 2 + b * 3 + c * 5) / 10;
    return 0;
}

 

posted @ 2024-06-07 11:06  五月江城  阅读(35)  评论(0编辑  收藏  举报