题目:
学生信息管理系统 学生信息包括:学号,姓名,年龄,性别,出生年月,地址,电话,E-mail等.试设计一学生
请用C++编写,主要是浏览信息中的学号问题要从小到大排序,这个我不会,请您尽力不要用指针,因为我们没学.用数组排序最好
解答:
// 信息管理系统.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include "iostream"
#include "string"
#include "fstream"
#include "conio.h"
using namespace std;
class Student // 定义了一个学生的类
{
public:
char Num[20]; //学生信息所包含的信息
char Name[20];
char Sex[20];
char Born[20];
char Col[20];
Student *Next;
void Input();
void Display();
void Read(istream &in);
};
void Student::Display() // 输出学生信息
{
//cout