Notice
Recent Posts
Link
Tags
- spring mvc
- spring boot
- Docker
- Django
- ORM
- springboot
- nginx
- static
- join
- mysql
- 자바
- 스프링부트
- DI
- java
- 스프링
- string
- 프로그래머스
- spring
- 데이터베이스
- jpa
- SSL
- hibernate
- sql
- select
- PYTHON
- AWS
- 1차원 배열
- 문자열
- @transactional
- spring security 6
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Archives
목록백준 1152번 (1)
개발하는 자몽

문제 코드 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(), " "); System.out.println(st.countTokens()); } }
Algorithm
2022. 4. 18. 14:38