From c05f2f55e14de7d6342b70e2ef0f480b7385f230 Mon Sep 17 00:00:00 2001 From: Taylor Rogers Date: Mon, 17 Oct 2022 09:00:01 -0700 Subject: Added length Qeustions --- BlankConsoleLab/BlankConsoleLab.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'BlankConsoleLab/BlankConsoleLab.cpp') 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; } -- cgit v1.2.3