#include <windows.h>
#define col GetStdHandle(STD_OUTPUT_HANDLE) // 콘솔창의 핸들정보 받기
#define RED SetConsoleTextAttribute( col,0x000c ); //빨간색
#define BLUE SetConsoleTextAttribute( col,0x0001 | 0x0008); //파란색
#define HIGH SetConsoleTextAttribute( col,0x00a); // 연두
#define WHITE SetConsoleTextAttribute( col,0x000f); // 흰색
#define SKY SetConsoleTextAttribute( col, 0x000b); //하늘색
#define YEL SetConsoleTextAttribute( col, 0x000e); //노란색
#define HIG SetConsoleTextAttribute( col, 0x000d); //형광
#define GOLD SetConsoleTextAttribute( col, 0x0006); //금색
#define JAJU SetConsoleTextAttribute( col, 0x0005); //자주색
#define PII SetConsoleTextAttribute( col, 0x0004); //피색
#define GREEN SetConsoleTextAttribute( col, 0x0002); //녹색