diff options
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; } |