diff options
| author | Anibal LopezBonilla <[email protected]> | 2022-10-19 22:02:14 -0700 |
|---|---|---|
| committer | Anibal LopezBonilla <[email protected]> | 2022-10-19 22:02:14 -0700 |
| commit | fbfe19ab1618214dabf00c0171e8d6dba9fdb367 (patch) | |
| tree | 55baaeb93d4e43644439a31772eff049051542f9 | |
| parent | Push 4 (diff) | |
| parent | Update BlankConsoleLab.cpp (diff) | |
| download | cst116-lab1-lopez-bonilla-fbfe19ab1618214dabf00c0171e8d6dba9fdb367.tar.xz cst116-lab1-lopez-bonilla-fbfe19ab1618214dabf00c0171e8d6dba9fdb367.zip | |
Merge branch 'master' of https://github.com/CST116/cst116-lab1-BuzzerBeaterClutch
| -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 d6dde49..636ab6c 100644 --- a/BlankConsoleLab/BlankConsoleLab.cpp +++ b/BlankConsoleLab/BlankConsoleLab.cpp @@ -36,11 +36,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 "; |