SWEA 2029 몫과 나머지 출력하기

Jmnote (토론 | 기여)님의 2019년 1월 14일 (월) 23:13 판 (→‎C++)

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