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

18번째 줄: 18번째 줄:
         Scanner sc = new Scanner(System.in);
         Scanner sc = new Scanner(System.in);
         int T = sc.nextInt();
         int T = sc.nextInt();
         int daysOfWeek[] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
         int days[] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
         for(int t=1; t<=T; t++) {
         for(int t=1; t<=T; t++) {
             int m1 = sc.nextInt();
             int m1 = sc.nextInt();
25번째 줄: 25번째 줄:
             int d2 = sc.nextInt();
             int d2 = sc.nextInt();
             int dif = 1+d2-d1;
             int dif = 1+d2-d1;
             for( int i=m1; i<m2; i++) dif += daysOfWeek[i-1];
             for( int i=m1; i<m2; i++) dif += days[i-1];
             System.out.format("#%d %d\n", t, dif );   
             System.out.format("#%d %d\n", t, dif );   
         }
         }

2019년 1월 26일 (토) 16:41 판

1 개요

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

틀:SWEA 난이도 2-2

2 C++

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