백준 코딩 테스트 3-8-11022 A + B -8 코딩 문제 Java로 해결하는 방법

  • by

백준 코딩 테스트를 단계적으로 해결

3단계 반복문 8 단계 11022 A+B -8 문제

https://www.acmicpc.net/problem/11022

11022번:A+B – 8

각 테스트 케이스마다 “Case #x: A + B = C” 형식으로 출력한다.

x는 테스트 케이스 번호, 1부터 시작하고 C는 A+B입니다.

www.acmicpc.net

https://www.acmicpc.net/step

단계적으로 풀다

이 단계는 @jh05013이 관리합니다.

단계제목 설명 정보 총문제 내가 맞은 문제 1 입출력과 사칙연산 입력, 출력과 사칙연산을 연습해 봅시다.

Hello World!
132 조건문 if와 같은 조건문을 사용합시다.

www.acmicpc.net



문제
두 개의 정수 A와 B를 입력한 다음 A+B를 출력하는 프로그램을 만듭니다.

입력
첫 번째 행에는 테스트 케이스의 수 T가 주어집니다.


각 테스트 케이스는 한 줄로 구성되며 각 줄에는 A와 B가 주어집니다.

(0

출력
각 테스트 케이스마다 “Case #x: A + B = C” 형식으로 출력한다.


x는 테스트 케이스 번호, 1부터 시작하고 C는 A+B입니다.

정답

import java.io.BufferedReader;

import java.io.BufferedWriter;

import java.io.IOException;

import java.io.InputStreamReader;

import java.io.OutputStreamWriter;

공개 수업 메인 {

공개 static void main(String() args) throws IOException {

BufferedReader br = 새로운 BufferedReader (새로운 InputStreamReader(System.in));

BufferedWriter bw = 새로운 BufferedWriter (새로운 OutputStreamWriter(System.out));

int T =Integer.parseInt(br.readLine());

for (int i= 0; i<T; i++) {

문자열 str = br.readLine();

int A =Integer.parseInt(str.split (” “)(0));

int B =Integer.parseInt(str.split (” “)(1));

bw.write(Case# +(i+1)+ “:” + A + “+” + B + “=” +(A+B)+ “\n”);

}

bw.flush();

br.close();

bw.close();

}

}

=>

BufferedReader와 BufferedWriter 연습 중

이전 문제에서 출력만 다른 문제


1-1-2557 Hello World https://developernew./41 <- 백준 회신 제출 방법
1-2-1000 A+B https://developernew./42
1-3-1001 AB https://developernew./43
1-4-10998 AXB https://developernew./44
1-5-1008 A/B https://developernew./45
1-6-10869 사칙 연산 https://developernew./46
1-7-10926??!
https://developernew./47
1-8-18108 1998년생 태국에서는 2541년생? https://developernew./48
1-9-10430 나머지 https://developernew./49
1-10-2588 곱하기 https://developernew./50
1-11-11382 아이 정민 https://developernew./51
1-12-10171 고양이 https://developernew./52
1-13-10172 개 https://developernew./53

2-1-1330 두 숫자 비교 https://developernew./54
2-2-9498 시험 성적 https://developernew./55
2-3-2753 윤년 https://developernew./56
2-4-14681 사분면 선택 https://developernew./61
2-5-2884 알람 시계 https://developernew./68
2-6-2525 오븐 시계 https://developernew./69
2-7-2480 주사위 https://developernew./72

3-1-2739 구구단 https://developernew./73
3-2-10950 A+B – 3 https://developernew./75
3-3-8393 합계 https://developernew./77
3-4-25304 영수증 https://developernew./79
3-5-25314 코딩은 체육 과목입니다 https://developernew./82
3-6-15552 빠른 A+B https://developernew./83
3-7-11021 A+B -7 https://developernew./85