Publivate (215) 썸네일형 리스트형 [Programming Principles and Practice Using C++] 01일차 제목: Programming Principles and Practice Using C++ 날짜: 2-16년 3월 15일 시간: 1시간 페이지: 1쪽 ~ 36쪽 (0.1까지) 내용: 머리말, 1학기에 다 끝낼 수 있다고 한다...흠....ㅋ 6개월에서 1년 정도에 끝내는 것을 목표로 읽겠다. drill 은 꼭 해야하고 excercise 는 다 할 것이라는 기대를 하고 있는 게 아니니 편안하게 하라고 한다. 다 읽으면...The c++ programming language (전문가용 책)프로젝트 관련에 특화된 책(Qt for GUI, ACE for distributed programming)C++의 특정한 면에 집중하는 책(Accelerated C++, Exceptional C++, Design Patter.. [c++] cout 소수점 자릿수 정하기 2 cout.precision(6); cout [c++] sort #include #include using namespace std; int main(void){ int input[3]; for(int i = 0; i> input[i]; } sort(input,input+3); for(int i = 0; i EOF (테스트 케이스가 주어지지 않았을 때) while(scanf("%d %d", &a, &b) != EOF){ // run code } 를 사용하면 됨 헤더파일 #include or #include [c++] 공백까지 입력받기 #include using namespace std; int main(void) { char sentence[1000000] = { ' ' }; cin.getline(sentence, 1000000); return 0; } 소수점 이하 자리수 출력하는 법 #include #include using namespace std; int main(void) { int a, b; cin >> a >> b; cout [C++] 오목 ver.10 1차로 만든 오목 구현내용: 1. 15*15 판 (좌표가 보임)2. 5개가 연달아 놓여있으면 승3. 이미 놓여있는 곳에 놓으면 다시 놓아야함 버그가 있을 지도 모름. main.cpp //Publivate #include "board.h" int main(void) { Board game1; //make a game game1.black_player.set_color('B'); //player1 is B(black) game1.white_player.set_color('W'); //player2 is W(white) game1.print_map(); //print first map while (1) //infinite loop { game1.black_player.set_pointer(); //black .. C++ 기본서 공부 후 추천 공부 1.중고급 c++ c++ primer plus 4th ed (Stephen Prata) the c++ programming language, special 3rd ed (Bjarne Stroustrup) Effective c++ (Scott Meyers) More Effective c++ (Scott Meyers) 2.윈도우즈 프로그래밍(API, MFC) Programming Winodws (Charles Petzold) 윈도우즈 API 정복 (김상형) Programming Windows with MFC (Jeff Prosise) 3.네트워크 프로그래밍 프로그래밍 방법보다는 네트워크 특성에 대해 잘 이해 -> 프로그래밍 서적이 아니더라도 네트워크에 대한 설명하는 책 4.데이터베이스와 SQL 표준 문법만 .. 이전 1 ··· 17 18 19 20 21 22 23 ··· 27 다음