문제 출처 https://www.acmicpc.net/problem/1152
내가 작성한 코드
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
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 count = st.countTokens(); //토큰의 개수를 세준다.
System.out.println(count);
}
}
countTokens()
StringTokenizer 클래스의 안에서 제공하는 기본 메서드이며 nextToken 메서드를 호출 할 수 있는 횟수를 계산해줍니다.