?? defines.h
字號:
#define GOOD 1
#define BAD 0
#define FLUID 0
#define WALL 1
#define SET_U 2
#define TRUE 1
#define FALSE 0
#define rho_0 1.0
#define u_0 0.1
#define faktor 1.0
#define eps 1E-6
#ifndef max
#define max(x,y) (((x) <= (y)) ? (y) : (x))
#endif
#ifndef min
#define min(x,y) (((x) >= (y)) ? (y) : (x))
#endif
#define abs(x) (((x) < (0))? -(x) : (x))
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -