Created
October 3, 2012 15:43
-
-
Save yrchen/3827664 to your computer and use it in GitHub Desktop.
2012 CE1001 E1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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