본문 바로가기

프로그래밍 공부/JavaScript

JavaScript - while 반복문 / for 반복문으로 구구단 출력

1. while문을 이용한 구구단 출력

더보기
1
2
3
4
5
6
7
8
9
10
let i=1;
while(i<9){
    i++
    let j=1;
    while(j<10){
        console.log(i + '*' + j + '=' + (i*j));
        j++;
    }
    console.log('\n');
}
cs

2. for문을 이용한 구구단 출력

더보기
1
2
3
4
5
6
for(i=2; i<10; i++){
    for(j=1; j<10; j++){
        console.log(i + '*' + j + '=' + (i*j));
    }
    console.log('\n');
}
cs

구구단.html
0.00MB