“CPP, podczas gdy” Kod odpowiedzi

CPP, podczas gdy

while (true) {
  cout << "hello" << endl;
}
Determined Dolphin

zrobić, gdy c

// Do while loop
// C++ Program to print numbers from 1 to 5

#include <iostream>

using namespace std;

int main() {
    int i = 6; 

    // while loop from 1 to 5
    while (i <= 5) {
        cout << i << endl;
        i++;
    }
    
    return 0;
}
Manaj Bera

Podczas pętli c

//Executes a statement repeatedly, until the value of condition becomes false.
//The test takes place before each iteration
while(condition) {
  statement
}
BreadCode

Odpowiedzi podobne do “CPP, podczas gdy”

Pytania podobne do “CPP, podczas gdy”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu