sss

hezhiqian 豌豆射手 2024-09-11 13:37:18 9
#include<bits/stdc++.h> //万能头文件
using namespace std;
const int N=10;
int cnt[N];
struct House
{
    int school,home;
}House[N];
//定义一个结构体,分别表示津津在学校学习的时间和在辅导班中学习的时间
int main()
{
    for(int i=1;i<=7;i++)
    {
        cin>>House[i].school>>House[i].home;
        cnt[i]=House[i].school+House[i].home;
    }
    //进行输入,并求出学习总时间
    int max=8,t=0; //注意津津一天超过8小时的学习才会不高兴,所以max=8
    for(int i=1;i<=7;i++)
    {
        if(cnt[i]>max)
        {
            max=cnt[i]; //最大值=最大时间
            t=i; //天数变为这一天
        }
    }
    cout<<t;
    return 0; //好习惯
}
{{ vote && vote.total.up }}

共 1 条回复

root 站长

可以发题解