Programers : 2016년(요일 구하기)
4593 단어 level1PROGRAMERSPROGRAMERS
윤년 포함 요일 구하기 문제
- 윤년이 포함되었기 때문에 2월은 29일까지 있다.
- 월 / 일에 대한 정보를 받고 해당되는 요일을 출력하는 문제
코드
#include <string>
#include <vector>
using namespace std;
string solution(int a, int b) {
string answer = "";
/* 요일 순서를 일~월로 하려면 str[(sum+4)%7]로 계산해야 한다! */
string str[7] = { "THU", "FRI", "SAT", "SUN", "MON", "TUE", "WED",};
int month[12]={31,29,31,30,31,30,31,31,30,31,30,31};
int sum=0;
for(int i=0;i<a-1;i++)
{
sum+=month[i];
}
sum+=b;
answer = str[sum%7];
return answer;
}
Author And Source
이 문제에 관하여(Programers : 2016년(요일 구하기)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://velog.io/@neity16/Programers-2016년요일-구하기
저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
- 윤년이 포함되었기 때문에 2월은 29일까지 있다.
- 월 / 일에 대한 정보를 받고 해당되는 요일을 출력하는 문제
#include <string> #include <vector> using namespace std; string solution(int a, int b) { string answer = ""; /* 요일 순서를 일~월로 하려면 str[(sum+4)%7]로 계산해야 한다! */ string str[7] = { "THU", "FRI", "SAT", "SUN", "MON", "TUE", "WED",}; int month[12]={31,29,31,30,31,30,31,31,30,31,30,31}; int sum=0; for(int i=0;i<a-1;i++) { sum+=month[i]; } sum+=b; answer = str[sum%7]; return answer; }
Author And Source
이 문제에 관하여(Programers : 2016년(요일 구하기)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@neity16/Programers-2016년요일-구하기저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)