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