This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <Windows.h> | |
| #include "LusDef.h" | |
| //////////////////////////////////////////////// | |
| // | |
| void DrawLineBox(HDC mainDC, RECT rc, | |
| COLORREF main_RGB, COLORREF Line_RGB, int LineLen, bool Type) | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| using namespace std; | |
| int CalcAreaNum(bool **arrStage, int M, int N, int* l_m = nullptr, int* l_n = nullptr) | |
| { | |
| int AreaNum = 0; | |
| bool **_arrStage = new bool*[M]; | |
| // malloc |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| #include <algorithm> | |
| #include <iterator> | |
| #include <Windows.h> | |
| #include <vector> | |
| using namespace std; | |
| #define MazeSize 16 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <iostream> | |
| #include <string> | |
| #include <vector> | |
| using namespace std; | |
| class Monster{ | |
| private: | |
| string m_strName; | |
| int m_iHP; | |
| public: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include<iostream> | |
| using namespace std; | |
| /* | |
| input한 년도의 | |
| 13일의 금요일이 포함된 월을 찾아라! | |
| 조건 : 가장 짧은 코드 | |
| 1900년 1월 1일 : 월 | |
| */ | |
| int main(){ | |
| int year(0), first_day(0), now_month(0); |
NewerOlder