문제 출처: https://www.acmicpc.net/problem/1152



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.InputStreamReader;
 
public class Main {
    
    public static void main(String[] args) throws Exception {
        BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
        String intput = reader.readLine();
        String[] arr = intput.split(" ");
        int spaceCount = 0;
        
        for(int i=; i<arr.length ; i++)
            if(arr[i].equals(""))
                spaceCount++;
        
        System.out.println(arr.length-spaceCount);
    }
}
cs



'Algorithm' 카테고리의 다른 글

백준 8958번: OX퀴즈  (0) 2018.10.15
백준 2577번: 숫자의 개수  (0) 2018.10.15
백준 2448번: 별찍기-11  (0) 2018.10.04
백준 1065번: 한수  (0) 2018.10.04
백준 4673번: 셀프 넘버  (0) 2018.10.04

+ Recent posts