aboutsummaryrefslogtreecommitdiffstats
path: root/ee1301/wk3/lab3/multTable.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ee1301/wk3/lab3/multTable.cpp')
-rw-r--r--ee1301/wk3/lab3/multTable.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/ee1301/wk3/lab3/multTable.cpp b/ee1301/wk3/lab3/multTable.cpp
new file mode 100644
index 0000000..4253980
--- /dev/null
+++ b/ee1301/wk3/lab3/multTable.cpp
@@ -0,0 +1,18 @@
+#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;
+ }
+}