宣锘


私信TA

用户名:dotcpp0696410

访问量:121

签 名:

等  级
排  名 6178
经  验 1446
参赛次数 11
文章发表 3
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

解题思路:将金银铜分别输入三次即可,并先输入比了多少天即可。

注意事项:不能把a,b,c的输入写在外面。

参考代码:

#include <bits/stdc++.h>


using namespace std;


int main()

{

    int n;

    int a=0,b=0,c=0;

    int jin, yen , tong;

    cin >>n;

    for(int i=1;i<=n;i++){

            cin>>jin >>yen >>tong;

        a+=jin;

        b+=yen;

        c+=tong;

    }

    cout <<a<<" "<<b<<" "<<c<<" "<<a+b+c;

    return 0;

}


 

0.0分

1 人评分

  评论区

verydood
2024-02-23 15:41:32
  • «
  • 1
  • »