From 95a180ab811e89512d851a40a64a6417fb18ebfa Mon Sep 17 00:00:00 2001 From: twsta Date: Tue, 11 Oct 2022 18:51:38 -0700 Subject: added input for width and height --- BlankConsoleLab/BlankConsoleLab.cpp | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/BlankConsoleLab/BlankConsoleLab.cpp b/BlankConsoleLab/BlankConsoleLab.cpp index a9c4b9e..90395d3 100644 --- a/BlankConsoleLab/BlankConsoleLab.cpp +++ b/BlankConsoleLab/BlankConsoleLab.cpp @@ -4,6 +4,12 @@ using namespace std; int main() { - cout << "Hello World!" << endl; + int width, int height; + + cout << "Kite Math 0.1" << endl; + cout << "Please input the width of your kite:" << endl; + cin >> width; + cout << "Please input the height of your kite:" << endl; + cin >> height; } -- cgit v1.2.3