summaryrefslogtreecommitdiff
path: root/BlankConsoleLab/BlankConsoleLab.cpp
diff options
context:
space:
mode:
authorTaylor Rogers <[email protected]>2022-10-17 09:00:01 -0700
committerTaylor Rogers <[email protected]>2022-10-17 09:00:01 -0700
commitc05f2f55e14de7d6342b70e2ef0f480b7385f230 (patch)
treec99ee57b167cd4992105a780debb76e7d59847e1 /BlankConsoleLab/BlankConsoleLab.cpp
parentAdded width question (diff)
downloadcst116-lab1-taylorrog-c05f2f55e14de7d6342b70e2ef0f480b7385f230.tar.xz
cst116-lab1-taylorrog-c05f2f55e14de7d6342b70e2ef0f480b7385f230.zip
Added length Qeustions
Diffstat (limited to 'BlankConsoleLab/BlankConsoleLab.cpp')
-rw-r--r--BlankConsoleLab/BlankConsoleLab.cpp7
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;
}