From 90aff0b6e046adeb61c8606c0fe4eacaf33cc710 Mon Sep 17 00:00:00 2001 From: Taylor Rogers Date: Mon, 17 Oct 2022 08:58:08 -0700 Subject: Added width question --- BlankConsoleLab/BlankConsoleLab.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'BlankConsoleLab/BlankConsoleLab.cpp') diff --git a/BlankConsoleLab/BlankConsoleLab.cpp b/BlankConsoleLab/BlankConsoleLab.cpp index ed5f807..098d865 100644 --- a/BlankConsoleLab/BlankConsoleLab.cpp +++ b/BlankConsoleLab/BlankConsoleLab.cpp @@ -2,6 +2,7 @@ // #include +#include using namespace std; @@ -11,6 +12,9 @@ using std::endl; int main() { - cout << "Hello World!\n"; + int kwidth; + + cout << "What is the width of the kite in centimeters?: "; + cin >> kwidth; } -- cgit v1.2.3