1、乙個學生的資訊是:姓名,學號,性別,年齡等資訊,用乙個鍊錶,把這些學生資訊連在一起, 給出乙個age, 在些鍊錶中刪除學生年齡等於age的學生資訊。
程式**
#i nclude "stdio.h"
#i nclude "conio.h"
struct stu*linklist;
struct stu *creatlist(int n)
printf("create successful!");
return(h);
}void deletelist(struct stu *s,int a)
if(s==null)
printf("the record is not exist.");
else
}void display(struct stu *s)
}int main()
學生資訊(2)
完成日期 2014年05月08 版本號 v1.0 問題描述 樣例輸入 樣例輸出 問題分析 用簡單的方法,學會活學活用 include using namespace std class stu 宣告基類 void display 成員函式,輸出基類資料成員 protected 訪問許可權為保護型的資...
查詢學生資訊
題目描述 輸入n個學生的資訊,然後進行查詢。輸入 輸入的第一行為n,即學生的個數 n 1000 接下來的n行包括n個學生的資訊,資訊格式如下 01 李江 男 21 02 劉唐 男 23 03 張軍 男 19 04 王娜 女 19 然後輸入乙個m m 10000 接下來會有m行,代表m次查詢,每行輸入...
學生資訊排序
description 定義存放乙個學生資訊的結構體型別,學生資訊包括 姓名,學號,性別,院系,要求在隨意輸入5個學生的相關資訊後,按照學號從小到大順序輸出這些學生的資訊。input 先輸入5名學生的資訊,按學號順序排序輸出後在輸入要統計的院系名稱 output 先按學號從小到大的順序輸出學生資訊 ...