📄 define.h
字号:
/*! \file define.h \brief testing defines This is to test the documentation of defines.*//*! \def MAX(x,y) Computes the maximum of \a x and \a y.*//*! Computes the absolute value of its argument \a x.*/#define ABS(x) (((x)>0)?(x):-(x))#define MAX(x,y) ((x)>(y)?(x):(y))#define MIN(x,y) ((x)>(y)?(y):(x)) /*!< Computes the minimum of \a x and \a y. */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -