From f885de4057258ae362ba9a348879deb1b49e6551 Mon Sep 17 00:00:00 2001 From: Joe Traver Date: Tue, 18 Oct 2022 20:14:23 -0700 Subject: Step 1 Complete --- BlankConsoleLab/BlankConsoleLab.cpp | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) (limited to 'BlankConsoleLab/BlankConsoleLab.cpp') diff --git a/BlankConsoleLab/BlankConsoleLab.cpp b/BlankConsoleLab/BlankConsoleLab.cpp index ed5f807..f612bb8 100644 --- a/BlankConsoleLab/BlankConsoleLab.cpp +++ b/BlankConsoleLab/BlankConsoleLab.cpp @@ -11,6 +11,20 @@ using std::endl; int main() { - cout << "Hello World!\n"; + int height; + int width; + + + cout << "Enter height of kite in cm: "; + cin >> height; + + cout << "Enter width of kite in cm: "; + cin >> width; + + + + + + } -- cgit v1.2.3