summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnibal LopezBonilla <[email protected]>2022-10-19 22:36:07 -0700
committerAnibal LopezBonilla <[email protected]>2022-10-19 22:36:07 -0700
commit5546c8facaccf24377e2e4bd1d9401b97dc0321e (patch)
tree85b3b8ac856c6c4125878526c4ee975f3f2037e2
parentPush 8 Added Pseudocode file (diff)
downloadcst116-lab1-lopez-bonilla-5546c8facaccf24377e2e4bd1d9401b97dc0321e.tar.xz
cst116-lab1-lopez-bonilla-5546c8facaccf24377e2e4bd1d9401b97dc0321e.zip
small details Push 9
-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)