반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 테이블
- IntelliJ
- table
- Visual Studio Code
- 자바
- CSS
- windows
- list
- CMD
- html
- 배열
- input
- 문자열
- Java
- Array
- ArrayList
- 인텔리제이
- vscode
- 이탈리아
- js
- 자바스크립트
- Eclipse
- Button
- 이클립스
- json
- string
- date
- Files
- Maven
- javascript
Archives
- Today
- Total
목록1152 (1)
어제 오늘 내일
[백준 알고리즘] 1152 단어의 개수(with Java)
https://www.acmicpc.net/problem/1152 스페이스로 구분 된 단어의 갯수를 세는 문제이다. 처음에는 단순하게 전체 문장을 String으로 읽어서String의 split함수를 이용하여 배열에 단어를 쪼개 넣은 뒤배열의 갯수를 리턴하면 될 것이라고 생각해서 아래와 같이 프로그래밍 하였다. import java.util.Scanner; public class Main { public static void main(String[] args) { // TODO Auto-generated method stub Scanner sc = new Scanner(System.in); int rslt = 0; String s = sc.nextLine(); String[] slist = s.split(..
IT/Algorithm
2016. 9. 14. 06:30