解题思路:
注意事项:
参考代码:
#include<bits/stdc++.h> using namespace std; typedef struct a{ char m[20]; int age; }T; int main() { int n; cin>>n; T a[101]; for(int i=1;i<=n;i++) cin>>a[i].m>>a[i].age; for(int j=n;j>=1;j--) {for(int t=n;t>n-j+1;t--) if((a[t].age>a[t-1].age)&&a[t].age>=60) {T temp=a[t]; a[t]=a[t-1]; a[t-1]=temp;}} for(int i=1;i<=n;i++) cout<<a[i].m<<" "<<endl; return 0; }
0.0分
0 人评分
C语言训练-斐波纳契数列 (C语言代码)浏览:3015 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:590 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:1914 |
汽水瓶 (C语言代码)浏览:664 |
WU-输出九九乘法表 (C++代码)浏览:1852 |
C语言程序设计教程(第三版)课后习题10.2 (C语言代码)浏览:1483 |
A+B for Input-Output Practice (IV) (C语言代码)浏览:513 |
sizeof的大作用 (C语言代码)浏览:1138 |
1054题解浏览:516 |
1197求助浏览:667 |