Skip to content

Instantly share code, notes, and snippets.

Created December 1, 2017 09:47
Show Gist options
  • Select an option

  • Save anonymous/ed29126887fcacfa2f1b31e62495979b to your computer and use it in GitHub Desktop.

Select an option

Save anonymous/ed29126887fcacfa2f1b31e62495979b to your computer and use it in GitHub Desktop.
#include <iostream>
using namespace std;
int main()
{
for (int y=1;y<=10;y++)
{
cout << "2 x " << y << " = " << endl;
}
for (int x=2;x<=20;x+=2)
{
cout << x << endl;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment