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

 
(사용자 2명의 중간 판 3개는 보이지 않습니다)
1번째 줄: 1번째 줄:
==개요==
==개요==
;SWEA 1948 날짜 계산기
{{SWEA|난이도=2}}
*
 
{{SWEA 헤더}}
{{SWEA 난이도 2-2}}
|}


==C++==
==C++==
<source lang='cpp'>
<syntaxhighlight lang='cpp'>
</source>
#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);
    }
}
</syntaxhighlight>


==Java==
==Java==
<source lang='java'>
<syntaxhighlight lang='java'>
import java.util.Scanner;
import java.util.Scanner;
class Solution {
class Solution {
18번째 줄: 27번째 줄:
         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번째 줄: 34번째 줄:
             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 );   
         }
         }
     }
     }
}
}
</source>
</syntaxhighlight>

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