diff options
| author | BuzzerBeaterClutch <[email protected]> | 2022-10-06 14:20:06 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-10-06 14:20:06 -0700 |
| commit | 44c1ac698d2a317ecc02eebb085d25a4435cee84 (patch) | |
| tree | 4577a7b84d85ff072cb7746194a4f1e1a9b4f6f7 /BlankConsoleLab/BlankConsoleLab.cpp | |
| parent | Push 2 Part 2 (diff) | |
| download | cst116-lab1-lopez-bonilla-44c1ac698d2a317ecc02eebb085d25a4435cee84.tar.xz cst116-lab1-lopez-bonilla-44c1ac698d2a317ecc02eebb085d25a4435cee84.zip | |
Update BlankConsoleLab.cpp
Formatting
Diffstat (limited to 'BlankConsoleLab/BlankConsoleLab.cpp')
| -rw-r--r-- | BlankConsoleLab/BlankConsoleLab.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/BlankConsoleLab/BlankConsoleLab.cpp b/BlankConsoleLab/BlankConsoleLab.cpp index ce7017e..2273542 100644 --- a/BlankConsoleLab/BlankConsoleLab.cpp +++ b/BlankConsoleLab/BlankConsoleLab.cpp @@ -32,11 +32,11 @@ int main() //Enter Width and Length in centimeters cout << "Please Enter your kite's length in CM " << endl; cin >> length; - while (length < 1 || length > 400) - { + while (length < 1 || length > 400) + { cout << "Please Enter your kite's length in CM " << endl; cin >> length; - } + } //Output the measures entered by user cout << "Your kite Measurements is "; |