题解 1227: 日期排序

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

日期排序 冒泡排序加结构体

摘要:解题思路:注意事项:输出时%02d补齐0,否则左侧只会输出2不会输出02参考代码:#include<stdio.h>struct date{    int y;    int m;    int d;……

1227: 日期排序

摘要:解题思路:注意事项:参考代码:arr = [] while True:     try:         arr.append(list(map(str, input().split(&#39;……

1227: 日期排序

摘要:解题思路:输入很简单,不用多说,我们把年月日做成一个小列表,塞进大列表里,然后再排序输出就可以了,很简单的一道题。注意事项:参考代码:n=[]while True:   try:         s=……

编写题解 1227: 日期排序

摘要:解题思路:注意事项:参考代码:lis=[] while True:     try:         dat=list(map(str,input().split(&#39;/&#39;))) ……

日期排序(C++) multiset

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> #include<set> #include<string> using namespac……