摘要: 输入四个人的年龄和姓名,排序后,按年龄,从小到大输出人员年龄及其姓名假如输入30 aaa23 bbb15 ccc32 ddd应当输出15 ccc23 bbb30 aaa32 ddd#includestruct people{ int age; char name[5];} ;int main(void){ int i,j,index; struct people people[10],temp; for(i=0;istruct student{ int num; char name[19]; int score; int average;}... 阅读全文
posted @ 2013-11-21 11:54 七颜℡ 阅读(492) 评论(0) 推荐(0)