18_IF~ELSE 구문 이용하여 논리 조건 처리 하기
if문만 사용한 경우
출력 결과: B, C, D
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//점수를 저장할 변수 선언
var score = 84;
//90점 이상은 A
if (score >= 90){
console.log("A");
}
//80점 이상은 B
if (score >= 80){
console.log("B");
}
//70점 이상은 C
if (score >= 70){
console.log("C");
}
//60점 이상은 D
if (score >= 60){
console.log("D");
}
//위 조건들에 해당하지 않을 경우 F
if (score < 60){
console.log("F");
}
if문과 논리 연산자만 사용한 경우
출력 결과: B
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//점수를 저장할 변수 선언
var score = 84;
//90점 이상은 A
if (score >= 90){
console.log("A");
}
//80점 이상은 B
if (score >= 80 && score < 90){
console.log("B");
}
//70점 이상은 C
if (score >= 70 && score < 80){
console.log("C");
}
//60점 이상은 D
if (score >= 60 && score < 70){
console.log("D");
}
//위 조건들에 해당하지 않을 경우 F
if (score < 60){
console.log("F");
}
if~else문을 사용한 경우
출력 결과: B
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//점수를 저장할 변수 선언
var score = 84;
//90점 이상은 A
if (score >= 90){
console.log("A");
}
//80점 이상은 B
else if (score >= 80){
console.log("B");
}
//70점 이상은 C
else if (score >= 70){
console.log("C");
}
//60점 이상은 D
else if (score >= 60){
console.log("D");
}
//위 조건들에 해당하지 않을 경우 F
else{
console.log("F");
}
출력 결과: B, C, D
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//점수를 저장할 변수 선언 | |
var score = 84; | |
//90점 이상은 A | |
if (score >= 90){ | |
console.log("A"); | |
} | |
//80점 이상은 B | |
if (score >= 80){ | |
console.log("B"); | |
} | |
//70점 이상은 C | |
if (score >= 70){ | |
console.log("C"); | |
} | |
//60점 이상은 D | |
if (score >= 60){ | |
console.log("D"); | |
} | |
//위 조건들에 해당하지 않을 경우 F | |
if (score < 60){ | |
console.log("F"); | |
} |
if문과 논리 연산자만 사용한 경우
출력 결과: B
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//점수를 저장할 변수 선언 | |
var score = 84; | |
//90점 이상은 A | |
if (score >= 90){ | |
console.log("A"); | |
} | |
//80점 이상은 B | |
if (score >= 80 && score < 90){ | |
console.log("B"); | |
} | |
//70점 이상은 C | |
if (score >= 70 && score < 80){ | |
console.log("C"); | |
} | |
//60점 이상은 D | |
if (score >= 60 && score < 70){ | |
console.log("D"); | |
} | |
//위 조건들에 해당하지 않을 경우 F | |
if (score < 60){ | |
console.log("F"); | |
} |
if~else문을 사용한 경우
출력 결과: B
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//점수를 저장할 변수 선언 | |
var score = 84; | |
//90점 이상은 A | |
if (score >= 90){ | |
console.log("A"); | |
} | |
//80점 이상은 B | |
else if (score >= 80){ | |
console.log("B"); | |
} | |
//70점 이상은 C | |
else if (score >= 70){ | |
console.log("C"); | |
} | |
//60점 이상은 D | |
else if (score >= 60){ | |
console.log("D"); | |
} | |
//위 조건들에 해당하지 않을 경우 F | |
else{ | |
console.log("F"); | |
} |
댓글남기기