프로그래머스 12901 2016년

(프로그래머스 연습 - 2016년에서 넘어옴)

1 개요[ | ]

프로그래머스 12901 2016년

2 C++[ | ]

#include <string>
#include <vector>

using namespace std;

string solution(int a, int b) {
    int daysOfMonth[] = {31,29,31,30,31,30,31,31,30,31,30,31};
    string dayOfWeek[] = {"SUN","MON","TUE","WED","THU","FRI","SAT"};
    int total = b+4;
    for(int i=0; i<a-1; i++) {
        total += daysOfMonth[i];
    }
    return dayOfWeek[total%7];
}

3 Java[ | ]

class Solution {
    public String solution(int a, int b) {
        int daysOfMonth[] = {31,29,31,30,31,30,31,31,30,31,30,31};
        String dayOfWeek[] = {"SUN","MON","TUE","WED","THU","FRI","SAT"};
        int total = b+4;
        for(int i=0; i<a-1; i++) {
            total += daysOfMonth[i];
        }
        return dayOfWeek[total%7];
    }
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}