문제 49 : 최대값 구하기

less than 1 minute read

문제 49 : 최댓값 구하기

// 입출력

// 입력 : 10 9 8 7 6 5 4 3 2 1
// 출력 : 10

풀이 1

Math객체에 max를 이용하면 쉽게 최대값을 찾을 수 있다.

const numbers = prompt("숫자를 입력하세요.").split(" ");
console.log(Math.max(...numbers));

Leave a comment