본문 바로가기
알고리즘 문제풀이/백준

[백준] 1152 단어의 개수 - 자바, StringTokenizer

by jeonghaemin 2021. 9. 17.
728x90

문제

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

풀이 코드

  • StringTokenizer의 countTokens() 메서드를 사용하여 단어의 개수 계산
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());
      System.out.println(st.countTokens());
  }
}

댓글