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

잔글 (봇: 자동으로 텍스트 교체 (-</source> +</syntaxhighlight>, -<source +<syntaxhighlight ))
8번째 줄: 8번째 줄:


==C++==
==C++==
<source lang='cpp'>
<syntaxhighlight lang='cpp'>
#include <iostream>
#include <iostream>
using namespace std;
using namespace std;
23번째 줄: 23번째 줄:
     }
     }
}
}
</source>
</syntaxhighlight>


==Java==
==Java==
<source lang='java'>
<syntaxhighlight lang='java'>
import java.util.Scanner;
import java.util.Scanner;
class Solution {
class Solution {
44번째 줄: 44번째 줄:
     }
     }
}
}
</source>
</syntaxhighlight>

2021년 7월 31일 (토) 10:55 판

1 개요

SWEA 1948 날짜 계산기
SW Expert 아카데미
# 문제 풀이

틀:SWEA 난이도 2-2

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 }}