编写题解 2903: 不高兴的津津 C 摘要:解题思路:输入-判断-输出注意事项:就是两个相同的时候如何比较,注意不要加>=号参考代码:#include<stdio.h>int main(){ int a[8],b[8]; int i…… 题解列表 2022年10月21日 0 点赞 0 评论 598 浏览 评分:9.9
编写题解 2903: 不高兴的津津 摘要:解题思路:注意事项:max>8参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>struct Time{ int stime; …… 题解列表 2022年10月26日 0 点赞 0 评论 152 浏览 评分:0.0
2903: 不高兴的津津 摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() { int a[8] = {0}, n = 0, max = 0, ans = 0; …… 题解列表 2022年11月07日 0 点赞 0 评论 133 浏览 评分:0.0
2903: 不高兴的津津 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int day; int arr1[8]={0}; int arr2[8]={0};//两个数组来装数…… 题解列表 2022年11月17日 0 点赞 0 评论 155 浏览 评分:0.0
2903: 不高兴的津津 摘要:```cpp #include #include using namespace std; int main() { int day,arr1[8],arr2[8]; m…… 题解列表 2023年01月05日 0 点赞 0 评论 296 浏览 评分:9.9
顺序查找之不高兴的津津 摘要:```c #include int main() { int a[7][2], b[7], num = 0, day; for (int i = 0; i < 7; i++) //输入7…… 题解列表 2023年01月19日 0 点赞 0 评论 218 浏览 评分:8.8
不高兴的津津(简单版) 摘要: 话不多说直接看代码 #include int main() { int i,j=0; int w,e; int a[7]; int m…… 题解列表 2023年03月26日 0 点赞 1 评论 290 浏览 评分:9.9
c语言不用数组,小白做法 摘要:解题思路:注意事项:参考代码: #include<stdio.h>int main(){int a,b,i,z,t=0,c=0;for(i=1;i<8;i++){scanf("%d%d",&a,&…… 题解列表 2023年04月17日 0 点赞 0 评论 107 浏览 评分:0.0
不高兴的津津(C++实现,两种方法:vector容器和结构体数组) 摘要:解题思路:方法一:用两个vector容器,第一个存放对应日期的上课时间,再将第一个的上课时间大于8的元素存放到第二个vector容器中,对第二个容器进行升序排序操作,最后遍历第二个容器将容器出现的第一…… 题解列表 2023年06月05日 0 点赞 0 评论 309 浏览 评分:9.9
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[7][2],i,j,b[7],max,max_sign; for (i = 0; i <…… 题解列表 2023年06月15日 0 点赞 0 评论 72 浏览 评分:0.0