본문 바로가기

C++8

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++ - 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.
C++ - Array_For_BaseballGame Ver.1.0 Mission : Let's make a Baseball Game Random input : 3 numbers between 1 to 9 without duplication. It is a game to find the hidden numbers in the form * * *. Enter three numbers until user find them. If the numbers provided at random are 7, 3, 8 and user enterd numbers are 1, 2, and 4. Outputs 'OUT' because there is no matching number. If the user enters 7,5,or 9, '1 STRIKE 0 BALL' is ouput becau.. 2019. 4. 5.
C++ - Array_For_LottoGenerator 1.1 CPP - Array_For_LottoGenerator #include #include #include using namespace std; #define LOTTO 45 typedef enum { FORTH = 3, THIRD, SECOND, FIRST }GRADE; static const char *grade[] = {NULL,NULL,NULL, "ForthGrade", "ThirdGrade", "SecondGrade", "FirstGrade" }; int main() { srand((unsigned int)time(0)); int iLotto[LOTTO] = {}; int iuInput, iaInput; int iuSort[6]={},iaSort[6] = {}; cout iuInput; iuInpu.. 2019. 4. 5.