본문 바로가기

전체 글

IT문명, 세상을 바꾸다 EBS 다큐프라임 - IT문명 세상을 바꾸다 IT 코리아 30년 EBS 다큐프라임 - IT문명, 세상을 바꾸다 인간의 아바타, 컴퓨터 EBS 다큐프라임 - IT문명, 세상을 바꾸다 스마트 빅뱅, 스마트 라이프 더보기
Image2Play 데모 영상 웹사이트에 있는 이미지를 서버에 동영상DB에 검색. 해당하는 동영상을 보여주는 프로그램 동영상 하나하나 프레임(이미지)를 검색? 더보기
[C언어]사다리타기_소스 #include #include #include #include #define randomize() srand((unsigned)time(NULL)) #define MAX 13 char sadari[10][MAX] = {" "}; void make_sadari(){ randomize(); int i, j; memset(sadari, 0, sizeof(sadari)); for(i = 0; i 더보기
[Win32 API]미니게임-테트리스/푸시푸시/지뢰찾기 [메인화면] 테트리스 화면 푸시푸시 게임 화면 지뢰찾기 화면 더보기
자연 더보기
제주 더보기
[C언어]socoban소코반(푸시푸시) 게임 #include #include "turboc.h" #define UP 72 #define DOWN 80 #define LEFT 75 #define RIGHT 77 #define STAGE 3 void MapDrow(); void KeyDown(); int Cheracter(); int nx, ny; int ston; int n_stage; char chMap[STAGE][10][15] = { { "###############", "#STAGE 1 ######", "###############", "##### #########", "##### #########", "##### #O#O####", "#####! @@ @ O##", "###### ####", "###############", "#######.. 더보기
[C++]randomize() #include void randomize(void) { srand((unsigned) time(NULL)); //#include for (int i = 0; i < (rand() % RAND_MAX); i++) (rand() % RAND_MAX); } 더보기