日期排序 (Java代码) 摘要:import java.util.ArrayList; import java.util.Collections; import java.util.Scanner; public clas…… 题解列表 2022年02月07日 0 点赞 0 评论 307 浏览 评分:9.9
日期排序 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>struct y_m_d{ int year; int month; int day;}date[3001];int main(){ i…… 题解列表 2018年01月11日 0 点赞 0 评论 1217 浏览 评分:9.9
日期排序-题解(Python代码)【答案有问题,以后再思考】 摘要:人都傻了,测试了N次,不知道格式上到底除了什么问题。以后有空再好好想一下,先备份了。 ```python items = [] temps = [] while True: …… 题解列表 2020年03月25日 0 点赞 1 评论 861 浏览 评分:9.9
编写题解 1227: 日期排序 摘要: #include struct a { int a; int b; int c; }; int main() …… 题解列表 2024年11月30日 1 点赞 0 评论 88 浏览 评分:9.9
python完成日期排序问题 摘要:参考代码:t=[] #建立一个空列表while True: #采用try except 进行多行输入 try: s=input().split('/',2…… 题解列表 2022年01月23日 0 点赞 0 评论 268 浏览 评分:9.9
Java —— 数组实现日期排序 摘要:解题思路:从用户输入中读取日期字符串,将其解析为自定义的 MyDate 对象,然后将这些日期进行排序并输出注意事项: 使用 while 循环读取输入的日期字符串时: …… 题解列表 2024年10月12日 0 点赞 0 评论 91 浏览 评分:9.9
日期排序-题解(C++代码)--笔记 摘要:解题思路:%d表示打印整型的,%2d表示把整型数据打印最低两位,%02d表示把整型数据打印最低两位,如果不足两位,用0补齐参考代码:#include<bits/stdc++.h> using nam…… 题解列表 2020年07月28日 0 点赞 0 评论 652 浏览 评分:9.9
编写题解 1227: 日期排序------sort排序 摘要:解题思路:sort排序注意事项:参考代码:#include<iostream> #include<algorithm> #include<stdio.h> using namespace std…… 题解列表 2022年03月20日 0 点赞 0 评论 331 浏览 评分:9.9
【sor魔法再现】1227: 日期排序---史上最短AC代码,只有5行!全新思路!不用结构体,年、月、日加加乘乘就解决——lambda多参数处理+lambda嵌套lambda 摘要:解题思路:【sor魔法再现】1227: 日期排序---史上最短AC代码,只有5行!全新思路!不用结构体,年、月、日加加乘乘就解决——lambda多参数处理+lambda嵌套lambda放个图片,证明确…… 题解列表 2021年12月06日 0 点赞 1 评论 495 浏览 评分:9.9
日期排序-题解(C++代码) 摘要:#### 解题思路: 本题主要用到了sort函数和结构体,思路很简单: #### 参考代码: ```cpp #include using namespace std; struct…… 题解列表 2020年02月13日 0 点赞 1 评论 978 浏览 评分:9.9