1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
import java.util.Scanner;
public class No06 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String str = sc.nextLine();
String[] arr = str.split("\\s");
System.out.println(arr.length);
sc.close();
} //main
} //class
|
cs |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class No06_2 {
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());
} //main
} //End class
|
cs |
JAVA. 백준 알고리즘 단계별 문제 7단계(문제 번호 5622) (0) | 2021.06.05 |
---|---|
JAVA. 백준 알고리즘 단계별 문제 7단계(문제 번호 2908) (0) | 2021.06.04 |
JAVA. 백준 알고리즘 단계별 문제 7단계(문제 번호 1157) (0) | 2021.06.02 |
JAVA. 백준 알고리즘 단계별 문제 7단계(문제 번호 2675) (0) | 2021.06.01 |
JAVA. 백준 알고리즘 단계별 문제 7단계(문제 번호 10809) (0) | 2021.06.01 |