旧物有情 # 不高兴的津津 模拟题如何写的又快又准?答案是多练 摘要:``` #include using namespace std; int main(){ //认为最开始是开心的 bool happy=true; //记录学习…… 题解列表 2024年10月17日 0 点赞 0 评论 93 浏览 评分:9.9
编写题解 2903: 不高兴的津津,超级简单 摘要:解题思路:找最大值,判断是否大于8小时,是的话就输出下标。注意事项:数组从1开始。参考代码:#include<iostream>using namespace std;int main(){ i…… 题解列表 2024年01月25日 0 点赞 0 评论 35 浏览 评分:0.0
903: 不高兴的津津 摘要:``` #include using namespace std; const int N=110; int a[N] ,b[N]; int main() { int t = 0; …… 题解列表 2023年12月19日 0 点赞 0 评论 55 浏览 评分:0.0
写题解 2903: 不高兴的津津 摘要: #include using namespace std; int a[10],b[10],c[10],d,day; int main(){ for(…… 题解列表 2023年12月06日 0 点赞 0 评论 113 浏览 评分:2.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 <bits/stdc++.h>using namespace std;int a,b,c,maxday = 0,maxtime = 0;int main…… 题解列表 2023年07月17日 0 点赞 0 评论 88 浏览 评分:9.9
2903: 不高兴的津津 摘要:参考代码:#include <bits/stdc++.h>using namespace std;int a,b,c,maxday = 0,maxtime = 0;int main(){ for…… 题解列表 2023年07月16日 0 点赞 0 评论 155 浏览 评分:9.9
不高兴的津津(C++代码)简单即实用 摘要:参考代码:#include <iostream>using namespace std;int main() { int studyTime[7]; // 津津在学校上课的时间 int…… 题解列表 2023年07月14日 0 点赞 0 评论 447 浏览 评分:7.1
不高兴的津津(C++实现,两种方法:vector容器和结构体数组) 摘要:解题思路:方法一:用两个vector容器,第一个存放对应日期的上课时间,再将第一个的上课时间大于8的元素存放到第二个vector容器中,对第二个容器进行升序排序操作,最后遍历第二个容器将容器出现的第一…… 题解列表 2023年06月05日 0 点赞 0 评论 307 浏览 评分:9.9
2903: 不高兴的津津 摘要:```cpp #include #include using namespace std; int main() { int day,arr1[8],arr2[8]; m…… 题解列表 2023年01月05日 0 点赞 0 评论 296 浏览 评分:9.9