最主要的就是把月日年拆开,变为年月日的一个整数,再对整数排序即可 #include <iostream> #include <cstdlib> #include <cmath> #include <deque> #include <algorithm> #include <numeric> #include <iterator> #include <sstream> #include <iomanip> #include <vector> #include <string.h> #include <string> using namespace std; void fun(string str,char ch,deque<string> &q) { stringstream ss(str); string s; while(getline(ss,s,ch)) { q.push_back(s); } } int main() { string str; deque<int> p; deque<string> q; while(cin>>str) { fun(str,'/',q); string temp; temp=q[2]+q[0]+q[1]; int num; stringstream ss; ss<<temp; ss>>num; p.push_back(num); q.clear(); } sort(p.begin(),p.end()); for(int i=0;i<p.size();i++) { string s; stringstream ss; ss<<p[i]; ss>>s; cout<<s[4]<<s[5]<<"/"<<s[6]<<s[7]<<"/"<<s[0]<<s[1]<<s[2]<<s[3]<<endl; } return 0; }
解题思路:
注意事项:
参考代码:
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题5.8 (C语言代码)浏览:613 |
C语言程序设计教程(第三版)课后习题7.5 (C语言代码)浏览:548 |
C语言程序设计教程(第三版)课后习题10.2 (C语言代码)浏览:564 |
图形输出 (C语言代码)浏览:1422 |
杨辉三角 (C语言代码)浏览:504 |
数字游戏 (C++代码)浏览:1240 |
C二级辅导-分段函数 (C语言代码)浏览:659 |
永远的丰碑 (C语言代码)浏览:608 |
C语言程序设计教程(第三版)课后习题6.4 (C语言代码)浏览:381 |
C语言程序设计教程(第三版)课后习题7.3 (C语言代码)浏览:555 |