do while loop c++ loops continuously
//vars
int A; //any variable will do
// loop
do {
A = 0; // clearing last input from last looping
cout << "request value for A";
cin >> A;
}
while (A != 'any value other than zero');
do while loop c++ loops continuously
//vars
int A; //any variable will do
// loop
do {
A = 0; // clearing last input from last looping
cout << "request value for A";
cin >> A;
}
while (A != 'any value other than zero');
While loop in c++
while (x != 0){ ... }
While loop in c++
while (x){ ... }
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us