[프로그래머스]2016년
별 생각없이 스르륵 풀면 되는 문제 현재까지의 모든 날을 더해서 요일의 수(7)로 나눠주면 답을 구할 수 있다. #include #include using namespace std; int mon[12] = { 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; string week[7] = { "FRI","SAT","SUN","MON","TUE","WED","THU" }; string solution(int a, int b) { string answer = ""; int day = b - 1; for(int i = 0; i
[프로그래머스]모의고사
mod를 이용해 각 유저의 답을 순회할 수 있도록 했다. 답 확인이 끝난 후 정답의 횟수에 따라 조건문을 진행함으로써 answer을 구했다. #include #include #include using namespace std; int user1[5] = { 1, 2, 3, 4, 5}; int user2[8] = { 2, 1, 2, 3, 2, 4, 2, 5 }; int user3[10] = { 3, 3, 1, 1, 2, 2, 4, 4, 5, 5 }; vector solution(vector answers) { vector answer; int count[3] = { 0 }; for(int i = 0; i