📄 allhead.h
字号:
/*
======================================================================
allhead.h : 预编译采用的统一头文件.
======================================================================
*/
// Standard headers
// Borland C++ Builder
#ifdef __BCPLUSPLUS__
#include <vcl.h>
#include <stdlib>
#include <stdio>
#include <math>
#include <iostream>
#include <fstream>
#include <iomanip>
#include <string>
#include <sstream.h>
#endif
// Microsoft Visual C++
#ifdef _MSC_VER
#include "stdafx.h"
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
#include <iostream.h>
#include <iomanip.h>
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -