본문 바로가기
알고리즘/알고리즘 기초문제(백준-입출력)

[백준]11720_숫자의 합★

by 모두의 향연 2022. 2. 15.
728x90
반응형

next() 는 문자 혹은 문자열을 공백 기준으로 한 단어 또는 한 문자씩 입력을 받는다. 

nextLine()의 경우에는 문자 혹은 엔터를 치기 전까지의 문장 전체를 입력받는다. 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
 
public class Main {
    public static void main(String args[]) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
 
        int N = Integer.parseInt(br.readLine());
        int sum = 0;
 
        for (int n = 0; n < N; n++) {
            sum += br.read() - '0';// 문자를 숫자로
        }
        System.out.println(sum);
    }
}
 
cs
728x90
반응형