ALGORITHM

[JAVA] 백준 1152번- 단어의 개수

연듀 2022. 7. 26. 10:07

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

 

1152번: 단어의 개수

첫 줄에 영어 대소문자와 공백으로 이루어진 문자열이 주어진다. 이 문자열의 길이는 1,000,000을 넘지 않는다. 단어는 공백 한 개로 구분되며, 공백이 연속해서 나오는 경우는 없다. 또한 문자열

www.acmicpc.net

 

 

isBlank() 사용


import java.util.*;

public class Main {
    public static void main(String[] args) {
    Scanner sc= new Scanner(System.in);

    String str = sc.nextLine();
    String[] arr = str.split(" ");
    
    int cnt=0;
    for(String x : arr){
        if(!x.isBlank()) cnt++;
    }
        System.out.println(cnt);
    }
}

 

StringTokenizer 사용 


import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        String str = sc.nextLine();

        StringTokenizer st = new StringTokenizer(str, " "); // 공백을 기준으로 나눈 토큰들
        System.out.println(st.countTokens()); // 토큰의 개수
    }
}