본문 바로가기

my_lesson/_C++14

C++_ Verry simple Crawler(C++20) 원작자 :웹페이지 이미지 크롤링 [ C++20 ] 웹페이지 이미지 크롤링 [ C++20 ] 개발환경 >> Visual Studio 언어 >> C++20 운영체제 >> Windows10 안녕하세요~!~!~!~!!! 이번에는 C++로 간단하게 웹페이지 이미지 크롤링 자동화를 만들어 보겠습니다. 우선 이번에 사용할 사이트는 pokemonkorea mawile.tistory.com #include #include #pragma comment(lib, "urlmon.lib") int main() { //url to crawling const char base[] = "https://data1.pokemonkorea.co.kr/newdata/pokedex/full/"; //folder path to save //I.. 2021. 5. 7.
C++ - Array_For_BingoGame ver 1.0 C++ - Array_For_BingoGame ver 1.0 Create numbers 1 to 25 at iBingo Shuffle numbers Input 5 numbers 1 to 25 at iInput Compare btween iBingo to iInput Bingo line check If it is more 4 lines, output BINGO !! array_for_bingoGame.cpp // Let's play bingo Game #include #include #include #include "MyLib.h" using namespace std; #define MATRIX 25 #define BINGO 5 void CreateNum(int* pArr, int sizeTot); voi.. 2019. 4. 27.
C++ - Array_For_numberPuzzleGame ver 1.0 CPP - Array_For_numberPuzzleGame ver 1.0 Mission : Let's make a game fo numberPuzzle Create a array size of 25 Asignment a value 1 to 24 and last value is INT_MAX Shuffle the array and shuffle except the last value. Replace INT_MAX with '*'. Use "w : up s : down a : left d : right q : quit " to move "*" array_for_numberPuzzleGame.cpp // array_ for _numberPuzzle Game #include #include #include #i.. 2019. 4. 26.
C++ - For 반복문 별그리기 ver 1.0 , ver 1.1 CPP - For 반복문 별그리기 ver 1.0 , ver 1.1 별그리기 Ver 1.0 // Make a diamond by * /* ......*...... .....***..... ....*****.... ...*******... ....*****.... .....***..... ......*...... */ #include using namespace std; void makeDiamond(int iIput); int main() { long long iInput, iCount; while (true) { cout > iInput; if (iInput % 2 == 1) { cout 2019. 4. 24.
C++ - Embeding Python3.7.3 in CPP project CPP - Embeding Python3.7.3 in CPP project 파이썬을 다른 언어로 짠 프로그램 안에 넣는 것을 Embedding이라고 하고 파이썬에서 C/C++ 등의 소스를 사용하는 것을 Extending이라고 합니다. 그중에서도 Embedding, 그 중에서도 Visual studio를 이용한 방법을 알아봅시다. 저는 Python 3.7버전으로 경로는 설치폴더 를 사용했구요, visual studio 2017 버전입니다 먼저, 포함 디렉터리, 라이브러리 디렉터리, 추가 종속성을 설정을 해야합니다 :) 1. 프로젝트 속성창을 띄우고 모든 구성을 선택합니다. 구성 속성 - VC++ 디렉터리 - 포함 디렉터리, 라이브러리 디렉터리를 각각 Python경로\include과 Python경로\libs.. 2019. 4. 16.
C++ - Array_For_LottoGame Ver 1.2 functional CPP - Array_For_LottoGame Ver 1.2 functional 안녕하세요, 다음 링크를 클릭해 회의에 참가하십시오: https://go.teamviewer.com/v14/m68206362 회의 ID: m68-206-362 Time : PM 23~24 감사합니다. boolean // Create a Game Lotto // 1. 선택되서 출력되는 로또 번호를 오름차순으로 정렬해보자 // 2. 사용자가 선택한 번호와 추첨번호가 일치하면 Congratulation 을 출력하게 하자 #include #include #include using namespace std; #define LOTTO 45 #define LSIX 6 typedef enum { FORTH = 3, THIRD, SECOND.. 2019. 4. 10.