summaryrefslogtreecommitdiff
path: root/BlankConsoleLab/BlankConsoleLab.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'BlankConsoleLab/BlankConsoleLab.cpp')
-rw-r--r--BlankConsoleLab/BlankConsoleLab.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/BlankConsoleLab/BlankConsoleLab.cpp b/BlankConsoleLab/BlankConsoleLab.cpp
index df78c3d..2e522be 100644
--- a/BlankConsoleLab/BlankConsoleLab.cpp
+++ b/BlankConsoleLab/BlankConsoleLab.cpp
@@ -24,7 +24,8 @@ int main()
//Welcome Message
cout << "Hello welcome to the Kite App" << endl << endl;
-
+
+ //Enter Width and Length in centimeters
cout << "Please enter your kite's width in CM "<< endl;
cin >> width;
while (width < 1 || width > 400)
@@ -33,7 +34,7 @@ int main()
cin >> width;
}
- //Enter Width and Length in centimeters
+
cout << "Please Enter your kite's length in CM " << endl;
cin >> length;
while (length < 1 || length > 400)