题解 2903: 不高兴的津津 摘要:解题思路:注意事项:参考代码:hour_max = day = 0 for i in range(1, 7 + 1): hour1, hour2 = map(int, input().sp…… 题解列表 2024年03月23日 0 点赞 0 评论 116 浏览 评分:0.0
2903: 不高兴的津津(C语言) 摘要: #include int main() { int a[7][2]; for(int i=0; i…… 题解列表 2023年07月24日 0 点赞 0 评论 145 浏览 评分:0.0
编写题解 2903: 不高兴的津津 摘要:解题思路:注意事项:max>8参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>struct Time{ int stime; …… 题解列表 2022年10月26日 0 点赞 0 评论 150 浏览 评分:0.0
2903: 不高兴的津津 摘要:``` #include using namespace std; int school[8],home[8],sum[8],ans; int main(){ for( int i=1;i…… 题解列表 2023年12月01日 0 点赞 0 评论 99 浏览 评分:0.0
不高兴的津津(这结构体真是相见恨晚讷) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> struct study { int a;//学校上课的时间 int b;//补课的时间 }; int m…… 题解列表 2023年10月11日 0 点赞 0 评论 60 浏览 评分:0.0
2903: 不高兴的津津 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int day; int arr1[8]={0}; int arr2[8]={0};//两个数组来装数…… 题解列表 2022年11月17日 0 点赞 0 评论 154 浏览 评分:0.0
编写题解 2903: 不高兴的津津,超级简单 摘要:解题思路:找最大值,判断是否大于8小时,是的话就输出下标。注意事项:数组从1开始。参考代码:#include<iostream>using namespace std;int main(){ i…… 题解列表 2024年01月25日 0 点赞 0 评论 36 浏览 评分:0.0