01. 다음 결과값을 작성하시오.
{
let num = 0;
while(false){
num++;
if( num == 3 ){
continue;
}
if( num > 10 ){
break;
}
}
console.log(num);
}
// 정답 : 0
풀이 : num은 전역변수이고 while문의 조건이 false 이므로 while문 안의 값은 출력되지 않습니다. 따라서 변수 num=0이 그대로 출력됩니다.
{
let a = 6, b = 9, c = 3, result;
result = ++a + b++ + ++c;
console.log(result);
console.log(a+b+c);
}
// 정답 : 20, 21
03. 결과값을 작성하시오
{
function func(){
let a = [];
for(i=1; i<=5; i++){
a += [i];
}
console.log(a);
}
func();
}
// 정답 : 12345
04.결과값을 작성하시오.
{
let arr = [3,4,1,4,1,3,4,9,8,3];
for(let i=0; i<10; i++){
if(i % 3 == 2){
console.log(arr[i]);
}
}
console.log(sum);
}
// 정답 : 1,3,8
풀이 : i가 0부터 9까지의 숫자 중에서 3으로 나누었을 때 값이 2가 남는 경우는 2,5,8 입니다. arr 배열 내에서 2,5,8번째의 요소값은 1,3,8 입니다.
05. 결과값을 작성하시오.
{
function func(num1, num2){
if(num1 > num2) return num1
else return num2
}
console.log(func(17, 23) + func(50, 40))
}
// 정답 : 73
{
function func(index){
console.log("함수가 실행되었습니다." + index);
}
function callback(num){
for(let i=0; i<=5; i++){
num(i);
}
}
callback(func);
}
// 정답 : 함수가 실행되었습니다. 0
함수가 실행되었습니다. 1
함수가 실행되었습니다. 2
함수가 실행되었습니다. 3
함수가 실행되었습니다. 4
함수가 실행되었습니다. 5
07. 결과값을 작성하시오.
{
for(let i=1; i<=5; i++){
console.log(i);
if(i == 4){
break;
}
}
}
결과 : 1,2,3,4
{
const arr = [100, 200, 300, 400, 500];
const text1 = arr.join("*");
arr.push("600");
const text3 = arr.join("");
arr.pop();
const text4 = arr.join(" ");
console.log(text1);
console.log(text3);
console.log(text4);
}
정답 : 100*200*300*400*500
100200300400500600
100 200 300 400 500
풀이 : const text1 = arr.join("*"); 이 먼저 실행 된 후 push()메서드가 적용됩니다. 따라서 console.log(text1); 는 100*200*300*400*500 이 출력되고 console.log(text3); 에는 push()메서드가 적용되고 join("")에 의해 배열들이 붙어서 100200300400500600출력됩니다. 다음 console.log(text4); 는 pop()메서드가 먼저 적용되어 배열의 마지막 위치 요소가 삭제 됩니다. 또한 join(" ")메서드에 의해 요소들에 띄어쓰기가 적용되어 100 200 300 400 500이 출력 됩니다.
{
let a, b = 10;
for(let i=0; i<5; i++){
a = i;
b -= a;
}
console.log(a, b)
}
// 정답 : 4, 0
10. 결과값을 작성하시오.
{
function func(){
let i = 10, j = 20, k = 30;
i /= j;
j -= i;
k %= j;
console.log(i);
console.log(j);
console.log(k);
}
func();
}
// 정답 : 0.5, 19,5, 10.5
{
let k = 2;
let temp;
for(let i=0; i<=3; i++){
temp = k;
k++;
console.log(temp + "번");
}
}
정답 : 2번, 3번, 4번, 5번
{
let num = 10;
num += 2;
num -= 3;
num *= 5;
num /= 5;
num %= 9;
console.log(num)
}
정답 : 0
{
let num = [1, 5, 1, 2, 7, 5];
for(let i=0; i<6; i++){
if((i+2) % 2 == 0){
console.log(num[i]);
}
}
}
// 정답 : 1,1,7
풀이 : 0부터 5까지의 i 값 중에 (i+2) % 2 의 나머지가 0인 경우는 i가 0, 2, 4 입니다. 배열 num 의 0,2,4번째 요소 값은 1, 1, 7입니다. 따라서 1,1,7이 출력됩니다.
{
let num = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9];
for(let i=0; i<=9; i++){
switch(num[i] % 2){
case 1:
console.log(num[i]);
break;
default:
console.log("**");
}
}
}
// 정답 : **1**3**5**7**9
풀이 : i를 2로 나누었을 때 나머지가 1인 경우는 배열의 요소를 출력하고 아닌경우는 **를 출력합니다.
따라서 **1**3**5**7**9 가 출력됩니다.
{
let cnt = 0;
let sum = 0;
for(let i=0; i<=7; i++){
if(i%2 == 1){
cnt++;
sum += i;
}
}
console.log(cnt + ", "+sum/2);
}
// 정답 4, 8
{
let data = [70, 80, 75, 60, 90];
let best = 1;
let score = 0;
for(let i=0; i<data.length; i++){
if(data[i]>=80) {
best++;
}
if(score < data[i]) {
score = data[i];
}
}
console.log(best, score)
}
// 정답 : 3, 90
{
let a, b, result;
a = 7, b = 4
result = a | b;
console.log(result)
}
// 정답 : 7
{
function solution(a, b, c){
let answer = "YES", max;
let total = a + b + c;
if(a > b) max = a;
else max = b;
if(c > max) max = c;
if(total-max <= max) answer = "NO";
return answer;
}
console.log(solution(53, 93, 107));
}
// 정답 : YES
{
function solution(a, b, c){
let answer;
if(a < b) answer = a;
else answer = b;
if(c <= answer) answer = c;
return answer;
}
console.log(solution(15, 12, 11));
}
// 정답 : 11
20. 결과값을 작성하시오.
{
function solution(day, arr){
let answer = 0;
for(let x of arr){
if(x % 10 == day) answer++;
}
return answer;
}
arr = [25, 23, 11, 47, 53, 17, 33, 40];
console.log(solution(0, arr));
}
// 정답 : 1