summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--BlankConsoleLab/BlankConsoleLab.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/BlankConsoleLab/BlankConsoleLab.cpp b/BlankConsoleLab/BlankConsoleLab.cpp
index 70fb5fc..b079311 100644
--- a/BlankConsoleLab/BlankConsoleLab.cpp
+++ b/BlankConsoleLab/BlankConsoleLab.cpp
@@ -16,6 +16,7 @@ int main()
cout << "Width: " << width << endl;
cout << "Height: " << height << endl;
- area = (width * height) / 2
+ area = (width * height) / 2;
+ area = area / 10000;
}