2개의 수 a, b를 입력 받아 a를 b로 나눈 몫과 나머지를 출력한다.
각 수는 1이상 10,000이하의 정수다.
[C]
#include <stdio.h>
int main(void) {
int test_case, T;
scanf("%d", &T);
for (test_case = 1; test_case <= T; test_case++) {
int a, b;
scanf("%d%d", &a, &b);
printf("#%d %d %d\n", test_case, a / b, a % b);
}
return 0;
}
[C++]
#include<iostream>
using namespace std;
int main(int argc, char** argv)
{
int test_case;
int T;
cin>>T;
for(test_case = 1; test_case <= T; ++test_case)
{
int a, b;
cin >> a >> b;
cout << "#" << test_case << " " << a/b << " " << a%b << endl;
}
return 0;
}
'SWEA > [D1]' 카테고리의 다른 글
[C] SWEA 1933 간단한 N의 약수 (0) | 2022.03.02 |
---|---|
[C/C++] SWEA 1938 아주 간단한 계산기 (0) | 2022.03.02 |
[C/C++] SWEA 2046 스탬프 찍기 (0) | 2022.03.02 |
[C언어] SWEA 2047 신문 헤드라인 (0) | 2022.03.02 |
[C언어] SWEA 2050 알파벳을 숫자로 변환 (0) | 2022.03.02 |