User Tools

Site Tools


Programming Reference/Librarys

Question & Answer

Q&A is closed





Available on the App Store
Available on the Android Market / Play Store
cpp:control_structures:continue

Table of Contents

continue

  continue;

cpp Sourcecode Example

#include <iostream> /* including standard library */
 
using namespace std;
int main( void ) {
int i;
 
for (i=0;i<=80;i++) {
    if (i==42) continue;
    cout << "The answer is probably not " << i << endl;
}
 
return 0;
}

output

Comment to the output: the number 42 will not print
continue skips the rest of the loop

  ouput:
  The answer is probably not 0
  The answer is probably not 1
  The answer is probably not 2
  The answer is probably not 3
  The answer is probably not ...
  The answer is probably not 41
  The answer is probably not 43

on the occasion of the current invasion of Russia in Ukraine

Russian Stop this War
cpp/control_structures/continue.txt · Last modified: 2024/02/16 01:04 (external edit)

Impressum Datenschutz