Skip to content

Instantly share code, notes, and snippets.

@jahlelin
Created July 21, 2019 20:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jahlelin/5880f5f628d6c23861b9af9a9339b741 to your computer and use it in GitHub Desktop.
Save jahlelin/5880f5f628d6c23861b9af9a9339b741 to your computer and use it in GitHub Desktop.
// This is a do_while loop
#include <iostream>
using namespace std;
int main()
{
int num = 5;
do {
cout << num << endl;
num++;
} while(num < 11);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment