일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- gpt3.5turbo
- GPT3.5
- 패키지설치에러
- 클라우드
- db
- 웹소켓연결
- 호스팅영역
- ChatGPT
- chatGPTAPI
- Github
- java
- gitlab
- 자바
- class
- iam사용자
- 웹소켓재시작
- git
- nvmrc
- 버킷생성
- nodejs
- Database
- aiapi
- 웹소켓연결끊김
- gptapi
- Express
- aws
- javascript
- 클래스
- openaiapi
- 노드버전
Archives
- Today
- Total
IT's Jenna
if문 - 백준 문제풀이 (javascript) 본문
값을 넣고 읽어오는 API : readline 관련해선 이전 포스팅 참고 바랍니다.
https://jungeunpyun.tistory.com/14?category=914393
1. 문제 번호 1330번, 두 수 비교하기
const readline = require("readline")
let a
let b
const rl = readline.createInterface({
input : process.stdin,
output : process.stdout
})
rl.on('line',(input) => {
let numbers = input.split(" ")
a = Number(numbers[0])
b = Number(numbers[1])
if(a>b) {
console.log('>')
}else if (a<b) {
console.log('<')
}else {
console.log('==')
}
})
rl.on('close', ()=>{
process.exit()
})
2. 문제번호 9498번, 시험 성적
split을 활용하여 값을 여러 개 입력하면 object 형태로 들어가지만 하나의 값만 넣어주면 string으로 들어가게 된다. 이때 parseInt를 사용하여 string을 정수값으로 변경할 수 있다.
처음에 a값 범위를 정할 때, 100>=a>=90 으로 작성했더니 어떤 수를 넣더라도 F가 나왔다. 다중 범위를 넣어줄 땐 &&를 사용하는 것을 잊지 말자!
const readline = require('readline')
const rl = readline.createInterface({
input : process.stdin,
output : process.stdout
})
let a
rl.on('line',(input)=>{
// console.log(input, typeof(input)) //값 string
a=parseInt(input)
// console.log(a, typeof(a))
if(100>=a && a>=90) {
console.log('A')
}else if (90>a && a>=80) {
console.log('B')
}else if (80>a && a>=70) {
console.log('C')
}else if (70>a && a>=60) {
console.log('D')
}else {
console.log('F')
}
})
rl.on('close',()=>{
process.exit()
})
3. 문제번호 2753번, 윤년
const readline = require('readline')
const rl = readline.createInterface({
input : process.stdin,
output : process.stdout
})
let y
rl.on('line',(input)=>{
y=parseInt(input)
if(y%100==0 && y%400==0){
console.log('1')
}else if (y%100!=0 && y%4==0){
console.log('1')
}else {
console.log('0')
}
})
rl.on('close',()=>{
process.exit()
})
4. 문제번호 14681번, 사분면 고르기
값을 두개를 받아와야 하기 때문에, 처음 전제조건에 length를 2로 넣어주고 그 안에서 분기를 나눴다.
const readline = require('readline')
const rl = readline.createInterface({
input : process.stdin,
output : process.stdout
})
let numbers = []
rl.on('line',(input)=>{
numbers.push(input)
x = Number(numbers[0])
y = Number(numbers[1])
})
rl.on('close',()=>{
if (numbers.length == 2){
if (x>0 && y>0){
console.log('1')
}else if (x<0 && y>0){
console.log('2')
}else if (x<0 && y<0){
console.log('3')
}else {
console.log('4')
}
}
process.exit()
})
5. 문제번호 2884번, 알람시계
개인적으로 분 단위를 먼저 나누고, 그 안에서 시간 단위를 나누는 것이 편하다고 생각하여 다음과 같이 분기를 나눴다.
const readline = require('readline')
const rl = readline.createInterface({
input : process.stdin,
output : process.stdout
})
let numbers
rl.on('line',(input)=>{
numbers = input.split(" ")
h = Number(numbers[0])
m = Number(numbers[1])
if (m>=45){
console.log(`${h} ${m-45}` )
}else {
if (h != 0){
console.log(`${h-1} ${60-(45-m)}`)
} else{
console.log(`23 ${60-(45-m)}`)
}
}
})
rl.on('close',()=>{
process.exit()
})
전체 코드 확인 : github.com/Jungeun-Pyun/Baekjoon_algorithm
'백준 문제풀이' 카테고리의 다른 글
백준 while문 - 10952, 10951, 1110 (javascript) (0) | 2021.12.02 |
---|---|
백준 문제풀이 1300 - 이진 탐색 (javascript) (0) | 2021.11.12 |
이진 탐색 (이분 탐색) _백준 문제 1920, 10816, 1654 (javascript) (0) | 2021.11.10 |
for문 - 백준 문제 풀이 (javascript) (0) | 2021.04.20 |
입출력과 사칙연산 - 백준 문제풀이 (javascript) (0) | 2021.01.18 |
Comments