diff options
| author | Taylor Rogers <[email protected]> | 2022-10-17 09:00:01 -0700 |
|---|---|---|
| committer | Taylor Rogers <[email protected]> | 2022-10-17 09:00:01 -0700 |
| commit | c05f2f55e14de7d6342b70e2ef0f480b7385f230 (patch) | |
| tree | c99ee57b167cd4992105a780debb76e7d59847e1 /BlankConsoleLab/BlankConsoleLab.cpp | |
| parent | Added width question (diff) | |
| download | cst116-lab1-taylorrog-c05f2f55e14de7d6342b70e2ef0f480b7385f230.tar.xz cst116-lab1-taylorrog-c05f2f55e14de7d6342b70e2ef0f480b7385f230.zip | |
Added length Qeustions
Diffstat (limited to 'BlankConsoleLab/BlankConsoleLab.cpp')
| -rw-r--r-- | BlankConsoleLab/BlankConsoleLab.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/BlankConsoleLab/BlankConsoleLab.cpp b/BlankConsoleLab/BlankConsoleLab.cpp index 098d865..6eec2a7 100644 --- a/BlankConsoleLab/BlankConsoleLab.cpp +++ b/BlankConsoleLab/BlankConsoleLab.cpp @@ -12,9 +12,14 @@ using std::endl; int main() { - int kwidth; + int kwidth, klength; cout << "What is the width of the kite in centimeters?: "; cin >> kwidth; + + cout << endl; + + cout << "What is the length of the kite in centimeters? "; + cin >> klength; } |