📄 city.h
字号:
//定义经停站信息
#ifndef _city_h
#define _city_h
#include <iostream>
#include <string>
using namespace std;
class city{
public:
string name;
string reachtime;//到达时刻
string launchtime;//出发时刻
int price;//票价
city * next;
city(int p=0,city * ne=NULL):price(p),next(ne){}
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -