CPP

Archive

프로그래머스 완주하지 못한 선수

#include #include #include using namespace std; string solution(vector participant, vector completion) { string answer = ""; sort(participant.begin(), participant.end()); sort(completion.begin(),completion.end()); for(int i = 0 ; i < participant.size(); i++) { if(participant[i] != completion[i]) { return participant[i]; } } return answer; }

Archive

프로그래머스 모의고사 CPP

#include #include #include #include using namespace std; vector solution(vector answers) { vector answer; // 각자의 찍는 방식 vector tester1 {1,2,3,4,5}; // 5 vector tester2 {2,1,2,3,2,4,2,5}; // 8 vector tester3 {3,3,1,1,2,2,4,4,5,5}; // 10 vector scores (3); int compare = NULL; // 각자 맞춘 문제수 구하고 for(int idx = 0 ; idx < answers.size(); idx++) { if (tester1.at(idx % 5) == answers.at(idx)) scores.at(0)++..

C | C++

c++ 구조2

//내가 공부한 것을 정리했다. 1 2 3 4 5 6 7 8 9 10 11 12 13 #include using namespace std; int main() { int favoriteNumber; std::cout

C | C++

C++ 의 구조1 - 키워드

//제가 공부한 것을 기반으로 작성했다. 대부분의 프로그래밍 언어가 그렇듯 C++도 미리 배정된 키워드들이 있다. C++는 대략 90개의 키워드를 가지고 있는데 50개를 가지고 있는 Java, 32개 C, 33개 Python에 비하면 굉장히 많은 편이라고 생각한다. 아래는 cppreference.com 에서 가져온 키워드의 목록인데 한눈에 많다는것을 알수 있다. 키워드는 모두 알 필요는 없지만 프로그래밍 언어의 표현적 특성 때문에 미리 알고 있는 편이 좋다. C++의 변수들의 이름은 다음과 같은 규칙을 가지고 있다. 1) 주요 키워드들은 사용할 수 없다. 2) 알파벳, 숫자, _로만 구성할 수 있다. 3) 대소문자를 구분합니다. myAge 와 myage, MyAge, Myage는 모두 다른 변수로 취급된..

냉국
'CPP' 태그의 글 목록 (2 Page)