diff options
| author | EdwardFine <[email protected]> | 2022-10-18 16:29:39 -0700 |
|---|---|---|
| committer | EdwardFine <[email protected]> | 2022-10-18 16:29:39 -0700 |
| commit | 3f5e6a248bbe25b7704c4bd3e46659117d636c15 (patch) | |
| tree | c9a173a6f0b396b4cab496f935fd06e5e3e885d0 | |
| parent | Force the user input to be between 1 and 400 (diff) | |
| download | cst116-lab1-edwardfine-3f5e6a248bbe25b7704c4bd3e46659117d636c15.tar.xz cst116-lab1-edwardfine-3f5e6a248bbe25b7704c4bd3e46659117d636c15.zip | |
Const for mass/square meter
| -rw-r--r-- | BlankConsoleLab/CST116-Lab1-Fine.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/BlankConsoleLab/CST116-Lab1-Fine.cpp b/BlankConsoleLab/CST116-Lab1-Fine.cpp index cca5be6..4a4431b 100644 --- a/BlankConsoleLab/CST116-Lab1-Fine.cpp +++ b/BlankConsoleLab/CST116-Lab1-Fine.cpp @@ -7,6 +7,7 @@ using namespace std; float GetArea(float length, float width); +const int massMeter = 135; using std::cout; using std::cin; using std::endl; |