문제
- https://www.acmicpc.net/problem/9295
풀이
주사위를 두 번 던져 나온 두 수를 a와 b로 가정한다면 Case X: 를 출력후 뒤에 두 수의 합 a+b의 값을 출력해준다.
여기서 Case 번호는 1부터 시작한다는것을 명심하자.
코드
< C99 >
#include <stdio.h>
int main(void) {
int t_case;
int a, b;
scanf("%d", &t_case);
for (int i = 1; i <= t_case; i++) {
scanf("%d %d", &a, &b);
printf("Case %d: %d\n", i, a + b);
}
}
< Python 3 >
t_case = int(input())
for i in range(1,t_case+1):
a,b = map(int,input().split())
print(f"Case {i}: {a+b}")
'Algorithm > BOJ' 카테고리의 다른 글
[백준/Python] 1764 듣보잡 (0) | 2024.08.10 |
---|---|
[백준/Python] 17219 비밀번호 찾기 (0) | 2024.08.10 |
[백준/Python3] 1251 단어 나누기 (0) | 2024.08.09 |
[백준/C99] 4458 첫 글자를 대문자로 (0) | 2024.08.01 |
[백준/C99] 2566 최댓값 (0) | 2024.07.30 |