From 5546c8facaccf24377e2e4bd1d9401b97dc0321e Mon Sep 17 00:00:00 2001 From: Anibal LopezBonilla Date: Wed, 19 Oct 2022 22:36:07 -0700 Subject: small details Push 9 --- BlankConsoleLab/BlankConsoleLab.cpp | 5 +++-- 1 file 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) -- cgit v1.2.3