📄 operation.h
字号:
#include <iostream>
using namespace std;
#ifndef _OPERATION_0607_H
#define _OPERATION_0607_H
struct Operation {
Operation(int m = 0);
bool is_draw();
int opr_sum;
};
istream& operator>> (istream&, Operation&);
ostream& operator<< (ostream&, const Operation&);
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -