diff options
| -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 f58bec3..a18ed55 100644 --- a/BlankConsoleLab/BlankConsoleLab.cpp +++ b/BlankConsoleLab/BlankConsoleLab.cpp @@ -31,7 +31,7 @@ int main() } while (length > 400 || length < 1); - cout << "The dimensions of your kite are " << width << "cm by " << length << "cm." << endl; + cout << endl << "The dimensions of your kite are " << width << "cm by " << length << "cm." << endl; double area = (width * length) / 10000.0; float aspectRatio = width / length; |