"SWEA 2029 몫과 나머지 출력하기"의 두 판 사이의 차이

9번째 줄: 9번째 줄:
==C++==
==C++==
<source lang='cpp'>
<source lang='cpp'>
#include <iostream>
using namespace std;
int main() {
    int T;
    cin >> T;
    for(int tc=1; tc<=T; tc++) {
        int a, b;
        cin >> a;
        cin >> b;
        cout << "#" << tc << " " << a/b << " " << a%b << endl;
    }
}
</source>
</source>



2019년 1월 14일 (월) 23:13 판

1 개요

SWEA 2029 몫과 나머지 출력하기
SW Expert 아카데미
# 문제 풀이

틀:SWEA 난이도 1-2

2 C++

#include <iostream>
using namespace std;
int main() {
    int T;
    cin >> T;
    for(int tc=1; tc<=T; tc++) {
        int a, b;
        cin >> a;
        cin >> b;
        cout << "#" << tc << " " << a/b << " " << a%b << endl;
    }
}

3 Java

import java.util.Scanner;
class Solution {
    public static void main(String args[]) {
        Scanner sc = new Scanner(System.in);
        int T = sc.nextInt();
        for(int t=1; t<=T; t++) {
            int a = sc.nextInt();
            int b = sc.nextInt();
            System.out.format("#%d %d %d\n", t, a/b, a%b);
        }
    }
}
문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}