试图以"while loop"的形式编写一个JavaScript "for loop",同时保持相同的功能

Trying to write a JavaScript "for loop" in the form of "while loop" while maintaining the same function

我试图转换这个“for 循环”

    for(rows=0;rows<26;rows++ ){
    for(seats=0;seats<100;seats++ ){
        console.log(rows+"-"+seats);
    }
}

到 javaScript 中的 while 循环,这就是我得到的

rows=0;
seats=0;
while(rows<26){

    while(seats<100){
        console.log(rows+"-"+seats);
        seats++;
    }
    rows++ ;
}

但输出不一样,我认为 while 循环有一个我不知道的问题..我希望任何人都可以提供帮助

您需要为每行重置 seats = 0。

rows=0;
seats=0;
while(rows<26){
    seats = 0;
    while(seats<100){
        console.log(rows+"-"+seats);
        seats++;
    }
    rows++;
}