解题思路:使用数字排序 控制格式输出
注意事项:
参考代码:
#include<bits/stdc++.h>
using namespace std;
int main(){
int a,b,c,k=0;
char ch;
int t[100];
while(cin>>a>>ch>>b>>ch>>c){
int n=c*10000+a*100+b; //把年月日记录为一个数字
t[k++]=n; //存入t数组
}
sort(t,t+k); //按数字从小到大排序 表示的对应日期就会从大到小排序
for(int i=0;i<k;i++){
cout<<setw(2)<<setfill('0')<<t[i]%10000/100<<"/"<<t[i]%100<<"/"<<t[i]/10000<<endl; //不足两位用0填充 分别输出月/日/年
}
return 0;
}
0.0分
2 人评分
C语言训练-委派任务* (C语言代码)..................竟然是第一个浏览:2212 |
点我有惊喜!你懂得!浏览:1437 |
模拟计算器 (C语言代码)浏览:966 |
【回文数(二)】 (C语言代码)浏览:940 |
C语言程序设计教程(第三版)课后习题8.8 (C语言代码)浏览:895 |
【计算两点间的距离】 (C语言代码)浏览:1522 |
水仙花 (C语言代码)浏览:1163 |
【亲和数】 (C语言代码)浏览:628 |
1124题解浏览:630 |
大家好,我是验题君浏览:604 |