From 2057b0a5b358bb73cdb16ece83e7ff50d55c7354 Mon Sep 17 00:00:00 2001 From: Hannah Wu Date: Tue, 25 Oct 2022 23:47:38 -0700 Subject: added printout of inputs --- BlankConsoleLab/BlankConsoleLab.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'BlankConsoleLab/BlankConsoleLab.cpp') diff --git a/BlankConsoleLab/BlankConsoleLab.cpp b/BlankConsoleLab/BlankConsoleLab.cpp index 930a4bb..cd57d54 100644 --- a/BlankConsoleLab/BlankConsoleLab.cpp +++ b/BlankConsoleLab/BlankConsoleLab.cpp @@ -3,6 +3,7 @@ #include + using namespace std; using std::cout; @@ -18,5 +19,8 @@ int main() cout << "Enter the length of the kite in meters." << endl; cin >> length; + + cout << "You have entered " << width << " for width." << endl; + cout << "You have entered " << length << " for length." << endl; } -- cgit v1.2.3