?? papp.cpp
字號:
//papp.cpp
#include"peo.h"
#include<iostream.h>
int main()
{
peo *node;
stu p1("張亞輝",95);
tec p2("楊毅",39);
list table;
node=&p1;
table.insert(node);
node=&p2;
table.insert(node);
table.display();
table.ser("張亞輝");
table.del("楊毅");
table.display();
return(0);
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -