"SWEA 1948 날짜 계산기"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
 
1번째 줄: 1번째 줄:
==개요==
==개요==
;SWEA 1948 날짜 계산기
{{SWEA|난이도=2}}
*
 
{{SWEA 헤더}}
{{SWEA 난이도 2-2}}
|}


==C++==
==C++==

2023년 8월 25일 (금) 01:47 기준 최신판

1 개요[ | ]

SWEA 1948 날짜 계산기

2 C++[ | ]

#include <iostream>
using namespace std;
int main() {
    int days[12] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
    int T;
    scanf("%d", &T);
    int m1, d1, m2, d2;
    for(int tc=1; tc<=T; tc++) {
        scanf("%d %d %d %d", &m1, &d1, &m2, &d2);
        int diff = d2-d1+1;
        for( int i=m1; i<m2; i++) diff += days[i-1];
        printf("#%d %d\n", tc, diff);
    }
}

3 Java[ | ]

import java.util.Scanner;
class Solution {
    public static void main(String args[]) {
        Scanner sc = new Scanner(System.in);
        int T = sc.nextInt();
        int days[] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
        for(int t=1; t<=T; t++) {
            int m1 = sc.nextInt();
            int d1 = sc.nextInt();
            int m2 = sc.nextInt();
            int d2 = sc.nextInt();
            int dif = 1+d2-d1;
            for( int i=m1; i<m2; i++) dif += days[i-1];
            System.out.format("#%d %d\n", t, dif );   
        }
    }
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}