summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoolyBoi <[email protected]>2022-10-19 20:11:56 -0700
committerDoolyBoi <[email protected]>2022-10-19 20:11:56 -0700
commit598a665302899d44e4932e7fa932769edb658eac (patch)
tree79e2bbd7684e785a0e9ca2e1a2106d4b0f6e3071
parentadded semicolon (diff)
downloadcst116-lab1-abd00l4h-598a665302899d44e4932e7fa932769edb658eac.tar.xz
cst116-lab1-abd00l4h-598a665302899d44e4932e7fa932769edb658eac.zip
corrected formatting
-rw-r--r--BlankConsoleLab/BlankConsoleLab.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/BlankConsoleLab/BlankConsoleLab.cpp b/BlankConsoleLab/BlankConsoleLab.cpp
index 80ba6be..365a0fc 100644
--- a/BlankConsoleLab/BlankConsoleLab.cpp
+++ b/BlankConsoleLab/BlankConsoleLab.cpp
@@ -31,7 +31,7 @@ int main()
cin >> length >> width;
//output confirmation stating what the user input
- cout << "So the length is " << length << "cm and the width is " << width << " cm." << endl;
+ cout << "So the length is " << length << "cm and the width is " << width << "cm." << endl;
if (width > 400 || length > 400 || width < 1 || length < 1)
{