學生信息管理系統 學生信息包括:學號,姓名,年齡,性別,出生年月,地址,電話,E-mail等.試設計一學生

題目:

學生信息管理系統 學生信息包括:學號,姓名,年齡,性別,出生年月,地址,電話,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:\x09
\x09char Num[20]; //學生信息所包含的信息
\x09char Name[20];
\x09char Sex[20];
\x09char Born[20];
\x09char Col[20];
\x09Student *Next;
\x09void Input();
\x09void Display();
\x09void Read(istream &in);
};
void Student::Display() // 輸出學生信息
{
\x09//cout

添加新評論

暱稱
郵箱
網站