https://www.acmicpc.net/problem/11021
문제
각 테스트 케이스마다 "Case #x: "를 출력한 다음, A+B를 출력한다. 테스트 케이스 번호는 1부터 시작한다.
풀이 : 와 이거 띄어쓰기 #이랑 : 맞추는거때문에 4번이나 틀렸다 ㅋㅋㅋ
이문제 포인트는 스트링이랑 인트랑 같이쓰면 스트링화 된다는 것이다 (1+2 = 12)
고로 괄호를 써서 인트끼리 먼저더해 묶어주면 해결된다.
해답)
package solution;
import java.util.Scanner;
public class Bakjun_11021 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int A = sc.nextInt();
for(int i=0;i<A;i++) {
int B = sc.nextInt();
int C = sc.nextInt();
System.out.println("Case #"+(i+1)+": "+(B+C));
}
sc.close();
}
}
'IT_tech > 알고리즘' 카테고리의 다른 글
백준 10952) A+B - 5 자바 (0) | 2019.11.05 |
---|---|
백준 11022) A+B - 8 (0) | 2019.11.05 |
백준 10950)A+B -3 자바 (0) | 2019.11.01 |
백준 2884) 알람시계 - 자바 (0) | 2019.10.28 |
백준 2753번) 윤년 (0) | 2019.10.23 |