본문 바로가기
코딩테스트 준비/백준

[백준] 31654번 - Adding Trouble [Java]

by mwzz6 2025. 1. 15.

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

 

[백준] 31654번 - Adding Trouble [Java]


1.  아이디어

 

A + B = C면 correct! 아니면 wrong!을 출력하는 문제로 조건문으로 간단하게 해결할 수 있다.


2. 문제풀이

 

아이디어 그대로 구현했다.


3. 코드

 

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        StringTokenizer st = new StringTokenizer(br.readLine());

        int A = Integer.parseInt(st.nextToken());
        int B = Integer.parseInt(st.nextToken());
        int C = Integer.parseInt(st.nextToken());

        if (A + B == C) System.out.println("correct!");
        else System.out.println("wrong!");
    }
}

4. 후기