?? station.h
字號:
#ifndef Station_H
#define Station_H
#include <iostream.h>
class Station
{//friend class CheCi;
public:
char staname[15];//站點名字
char time[6]; //在此站時的時間(即從始發站到該站點時的時間點)
int price; //從始發站到此站的票價
Station *next;
void STdisplay()
{cout<<"站點 "<<staname<<"到站時間 "<<time<<"票價 "<<price<<endl;}
};
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -