📄 phone1.h
字号:
/*
** Structure for long distance telephone billing record.
*/
struct PHONE_NUMBER {
short area;
short exchange;
short station;
};
struct LONG_DISTANCE_BILL {
short month;
short day;
short year;
int time;
struct PHONE_NUMBER called;
struct PHONE_NUMBER calling;
struct PHONE_NUMBER billed;
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -