Skip to content

Instantly share code, notes, and snippets.

@yrchen
Created October 3, 2012 15:43
Show Gist options
  • Save yrchen/3827664 to your computer and use it in GitHub Desktop.
Save yrchen/3827664 to your computer and use it in GitHub Desktop.
2012 CE1001 E1
#include <iostream>
using namespace std;
int
main()
{
int i = 1;
while (i < 21)
{
cout << 1 << " * " << i << " = " << 1 * i << endl;
i = i + 1;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment