首页 > TAG信息列表 > grade1

1083 List Grades (25point(s))

1083 List Grades (25point(s)) Given a list of N student records with name, ID and grade. You are supposed to sort the records with respect to the grade in non-increasing order, and output those student records of which the grades are in a given interval.

PAT排序题---1015 德才论 (25分)

1015 德才论 (25分) 分四个等级的排序,想简化的朋友可以用结构体数组容器存储啦~ #include<iostream> #include<vector> #include<ctype.h> #include<algorithm> #include<sstream> #include<string> #include<cstdio> using namespace std; /*此类考生按德才总分从高到低排序

C++ primer 练习4.22 答案

#include<iostream> using namespace std; #include<string> class studentGrade //学生类; { public: string finalgrade; //成绩类别; int grade; //成绩; studentGrade() { finalgrade = "UNKOWN"; grade = 0; } studentGr

A1083 List Grades (25 分)

Given a list of N student records with name, ID and grade. You are supposed to sort the records with respect to the grade in non-increasing order, and output those student records of which the grades are in a given interval. Input Specification: Each inpu