Notice
Recent Posts
Recent Comments
Link
«   2024/11   »
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
more
Archives
Today
Total
관리 메뉴

main

[Java] 문장 속 가장 긴 단어 출력하기 본문

Algorithm

[Java] 문장 속 가장 긴 단어 출력하기

1984 2022. 9. 9. 21:21
import java.util.Scanner;

public class Main {
	
	public String solution(String str) {
		int count = 0;
		String answer = "";
		String[] words = str.split(" ");
		
		for(String word : words) {
			if(word.length() > count) {
				count = word.length();
				answer = word;
			}
		}
				
		return answer;
	}

	public static void main(String[] args) {
		Main m = new Main();
		Scanner scan = new Scanner(System.in);
		
		String str = scan.nextLine();
		System.out.print(m.solution(str));
		
		scan.close();
	}

}

*  scan.nextLine(); : 줄 단위 입력 받음

* Integer.MIN_VALUE;

728x90
Comments