쌓고 쌓다
[혼공스] CH.3-1 마무리 본문
2. 두개의 숫자를 입력 받아 누가 더 큰지 출력
const a = Number(prompt('첫번째 수를 입력하세요.'))
const b = Number(prompt('두번째 수를 입력하세요.'))
if(a>b)
alert(`첫번째 수 ${a}가 더 큽니다.`)
else if(a==b)
alert(`첫번째 수 ${a}와 두번째 수 ${b}가 같습니다.`)
else
alert(`두번째 수 ${b}가 더 큽니다.`)
3. 중첩 조건문 -> 하나의 조건문
변경 전.
if( x > 10 ) {
if( x<20 ) {
console.log('조건에 맞음.')
}
}
변경 후.
if( 10 < x && x < 20 )
console.log('조건에 맞습니다.')
4. 숫자를 입력받아 양수, 0, 음수를 구분
const a = Number(prompt('숫자를 입력하세요.'));
if(a>0)
alert('양수')
else if(a==0)
alert('0입니다.')
else
alert('음수입니다.')
5. 숫자를 입력받아 홀, 짝 구분
const a = Number(prompt('숫자를 입력하세요.'))
if(a%2==0)
alert('짝수')
else
alert('홀수')
6. 현재가 몇 월인지, 계절은 무엇인지 출력
const month = Number(prompt('월을 입력하세요.'))
if( 3 <= month && month <= 5)
alert('봄')
else if( 6 <= month && month <= 8)
alert('여름')
else if( 9 <= month && month <= 11)
alert('가을')
else
alert('겨울')
'프로그래밍 > JavaScript' 카테고리의 다른 글
[혼공스] CH.3-2 마무리 (0) | 2022.10.15 |
---|---|
[JavaScript] switch, 삼항 연산자, 짧은 조건문 (1) | 2022.10.15 |
[JavaScript] 조건문 (1) | 2022.10.15 |
[혼공스] CH.2-3 마무리 (0) | 2022.10.14 |
[JS] inch -> cm 출력 (0) | 2022.10.11 |
Comments