#include<iostream> #include<string> using namespace std; struct student { string name; int age; int score; }; void swap(int &a,int &b) { int temp=a; a=b; b=temp; } void input(student stu[],int n) { for(int i=0;i<n;++i) { cin>>stu[i].name>>stu[i].age>>stu[i].score; } } void print(student stu[],int n) { for(int i=0;i<n-1;++i) { for(int j=0;j<n-1;++j) { if(stu[j].score>stu[j+1].score) { string t=stu[j].name; stu[j].name=stu[j+1].name; stu[j+1].name=t;
Tom数 (C++代码)浏览:868 |
C语言训练-角谷猜想 (C语言代码)浏览:1768 |
C语言训练-计算一个整数N的阶乘 (C语言代码)浏览:986 |
printf基础练习2 (C语言代码)浏览:321 |
C语言程序设计教程(第三版)课后习题4.9 (C语言代码)浏览:387 |
WU-小九九 (C++代码)浏览:1713 |
C语言程序设计教程(第三版)课后习题8.8 (C语言代码)浏览:1482 |
简单的a+b (C语言代码)浏览:626 |
求圆的面积 (C语言代码)浏览:1756 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:569 |