编写题解 2903: 不高兴的津津 C 摘要:解题思路:输入-判断-输出注意事项:就是两个相同的时候如何比较,注意不要加>=号参考代码:#include<stdio.h>intmain(){  …… 题解列表 2022年10月21日 0 点赞 0 评论 583 浏览 评分:9.9
编写题解 2903: 不高兴的津津 摘要:解题思路:注意事项:max>8参考代码:#include<stdio.h>#include<stdlib.h>#include<string.h>struct…… 题解列表 2022年10月26日 0 点赞 0 评论 138 浏览 评分:0.0
2903: 不高兴的津津 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ &a…… 题解列表 2022年11月07日 0 点赞 0 评论 122 浏览 评分:0.0
2903: 不高兴的津津 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){intday; intarr1[8]={0}; …… 题解列表 2022年11月17日 0 点赞 0 评论 143 浏览 评分:0.0
2903: 不高兴的津津 摘要:```cpp#include#includeusingnamespacestd;intmain(){intday,arr1[8],arr2[8];memset(arr1,0,sizeof(arr1))…… 题解列表 2023年01月05日 0 点赞 0 评论 289 浏览 评分:9.9
顺序查找之不高兴的津津 摘要:```c#includeintmain(){inta[7][2],b[7],num=0,day;for(inti=0;i<7;i++)//输入7行2列a数组{for(intj=0;j<2;…… 题解列表 2023年01月19日 0 点赞 0 评论 206 浏览 评分:8.8
不高兴的津津(简单版) 摘要:话不多说直接看代码#includeintmain(){inti,j=0;intw,e;inta[7];intmax=0;//预设最大值intday;intflag;intcount=0;for(i=0…… 题解列表 2023年03月26日 0 点赞 1 评论 273 浏览 评分:9.9
c语言不用数组,小白做法 摘要:解题思路:注意事项:参考代码: #include<stdio.h>intmain(){inta,b,i,z,t=0,c=0;for(i=1;i<…… 题解列表 2023年04月17日 0 点赞 0 评论 93 浏览 评分:0.0
不高兴的津津(C++实现,两种方法:vector容器和结构体数组) 摘要:解题思路:方法一:用两个vector容器,第一个存放对应日期的上课时间,再将第一个的上课时间大于8的元素存放到第二个vector容器中,对第二个容器进行升序排序操作,最后遍历第二个容器将容器出现的第一…… 题解列表 2023年06月05日 0 点赞 0 评论 268 浏览 评分:9.9
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){ inta[7][2],i…… 题解列表 2023年06月15日 0 点赞 0 评论 62 浏览 评分:0.0