统计成绩及排名的c++程序
#include #include using namespace std;#define max 20typedef struct _Student{ string name; string id; float math, com, eng, total; //对应为数学,计算机,英语,总分}Student;void search(Student data[]){ //找人并显示 string id; cout>id; for (int i=0; i精选答案
©本文版权归作者所有,任何形式转载请联系我们。