diff options
| author | DoolyBoi <[email protected]> | 2022-10-19 20:11:56 -0700 |
|---|---|---|
| committer | DoolyBoi <[email protected]> | 2022-10-19 20:11:56 -0700 |
| commit | 598a665302899d44e4932e7fa932769edb658eac (patch) | |
| tree | 79e2bbd7684e785a0e9ca2e1a2106d4b0f6e3071 | |
| parent | added semicolon (diff) | |
| download | cst116-lab1-abd00l4h-598a665302899d44e4932e7fa932769edb658eac.tar.xz cst116-lab1-abd00l4h-598a665302899d44e4932e7fa932769edb658eac.zip | |
corrected formatting
| -rw-r--r-- | BlankConsoleLab/BlankConsoleLab.cpp | 2 |
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) { |