累死自己卷死对手


私信TA

用户名:dotcpp0681599

访问量:133

签 名:

等  级
排  名 16390
经  验 801
参赛次数 0
文章发表 2
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

TA的其他文章

解题思路:

注意事项:

参考代码:

#include <iostream>

#include <vector>

using namespace std;


struct Patient {

    string name;

    float temperature;

    int cough;

};


void test()

{

    int n,nub=0;

    cin >> n;


    vector<Patient> patients(n);


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

        cin >> patients[i].name >> patients[i].temperature >> patients[i].cough;

        if (patients[i].temperature >= 37.5 && patients[i].cough == 1)

        {

            nub++;

            cout << patients[i].name<<endl;

        }

    }


    cout << nub << endl;

}


int main() {

    test();

    return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »