1-14) 가장 긴 문자열

김예지·2021년 8월 25일
0

문제

N개의 문자열이 입력되면 그 중 가장 긴 문자열을 출력하는 프로그램을 작성하세요.
[입력설명]
첫 줄에 자연수 N이 주어진다.(3<=N<=30)
두 번째 줄부터 N개의 문자열이 주어진다. 문자열의 길이는 100을 넘지 않습니다. 각 문자열의 길이는 서로 다릅니다.
[출력설명]
첫 줄에 가장 긴 문자열을 출력한다.

입력예제 1

5
teacher
time
student
beautiful
good

출력예제 1

beautiful


문제 풀이

코드

<html>
    <head>
        <meta charset="UTF-8">
        <title>출력결과</title>
    </head>
    <body>
        <script>
            function solution(s){  
                let answer, max=Number.MIN_SAFE_INTEGER;
                for(let x of s){
                    if(x.length>max){
                        max=x.length;
                        answer=x;
                    }
                }
                return answer;
            }
            let str=["teacher", "time", "student", "beautiful", "good"]; //문자열을 저장한 배열
            console.log(solution(str));
        </script>
    </body>
</html>

결과

beautiful

profile
내가 짱이다 😎 매일 조금씩 성장하기🌱

2개의 댓글

comment-user-thumbnail
2021년 9월 11일

9/10

답글 달기
comment-user-thumbnail
2022년 11월 24일

11/24

  • length 저장 변수, answer 저장 변수
답글 달기