Skip to content

Instantly share code, notes, and snippets.

@jahlelin
Created July 21, 2019 21:15
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/6597f8efac0361556450f4f068401ebf to your computer and use it in GitHub Desktop.
Save jahlelin/6597f8efac0361556450f4f068401ebf to your computer and use it in GitHub Desktop.
// This is a for loop
#include <iostream>
using namespace std;
int main()
{
for (int num = 10; num <=20; num++)
{
cout << num << endl;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment