aboutsummaryrefslogtreecommitdiffstats
path: root/OLD/ee1301/wk3/lab3/multTable.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'OLD/ee1301/wk3/lab3/multTable.cpp')
-rw-r--r--OLD/ee1301/wk3/lab3/multTable.cpp18
1 files changed, 0 insertions, 18 deletions
diff --git a/OLD/ee1301/wk3/lab3/multTable.cpp b/OLD/ee1301/wk3/lab3/multTable.cpp
deleted file mode 100644
index 4253980..0000000
--- a/OLD/ee1301/wk3/lab3/multTable.cpp
+++ /dev/null
@@ -1,18 +0,0 @@
-#include <iostream>
-using namespace std;
-int main() {
- int r=1, c=1;
- for (r; r<=10; r++) {
- for (c=10; c>0; c--) {
- int ans = r*c;
- if (ans!=100) {
- cout << " ";
- }
- if (ans<10) {
- cout << " ";
- }
- cout << ans;
- }
- cout << endl;
- }
-}