aboutsummaryrefslogtreecommitdiffstats
path: root/ee1301/wk3/lab3/multTable.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--ee1301/wk3/lab3/multTable.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/ee1301/wk3/lab3/multTable.cpp b/ee1301/wk3/lab3/multTable.cpp
index 5201c07..8e2e887 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 row=1, column=1;
- for (row; row<=10; row++) {
- for (column=10; column>0; column--) {
- int temp = row*column;
- if (temp!=100) {
+ 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 (temp<10) {
+ if (ans<10) {
cout << " ";
}
- cout << temp;
+ cout << ans;
}
cout << endl;
}
-} \ No newline at end of file
+}