백준1152: 단어의 개수
문제
https://www.acmicpc.net/problem/1152
문제 풀이
1
2
3
4
5
6
7
8
9
10
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String s = sc.nextLine();
StringTokenizer st = new StringTokenizer(s," ");
System.out.println(st.countTokens());
}
}
댓글남기기