From 3009c0d82ce189e3e67cb09f57190fddcdc5bf58 Mon Sep 17 00:00:00 2001 From: Joe Traver Date: Wed, 19 Oct 2022 22:33:08 -0700 Subject: Added Pseudo Code --- BlankConsoleLab/BlankConsoleLab.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'BlankConsoleLab/BlankConsoleLab.cpp') diff --git a/BlankConsoleLab/BlankConsoleLab.cpp b/BlankConsoleLab/BlankConsoleLab.cpp index 85c6c8d..d08fb77 100644 --- a/BlankConsoleLab/BlankConsoleLab.cpp +++ b/BlankConsoleLab/BlankConsoleLab.cpp @@ -24,10 +24,10 @@ int main() do { - cout << "Enter Length of kite in cm: "; + cout << "Enter length of kite in cm: "; cin >> length; - cout << "Enter Width of kite in cm: "; + cout << "Enter width of kite in cm: "; cin >> width; @@ -44,7 +44,7 @@ int main() // unit conversion area_m = area_cm / 10000; - cout << "Kite area: " << area_m << " square meters" << endl; + cout << "Kite area = " << area_m << " square meters" << endl; // aspect ratio ratio = width / length; -- cgit v1.2.3