summaryrefslogtreecommitdiff
path: root/BlankConsoleLab/BlankConsoleLab.cpp
diff options
context:
space:
mode:
authorJoe Traver <[email protected]>2022-10-19 22:33:08 -0700
committerJoe Traver <[email protected]>2022-10-19 22:33:08 -0700
commit3009c0d82ce189e3e67cb09f57190fddcdc5bf58 (patch)
tree1e55d9ead6f5f7453b7decaff4e255d1e99ada92 /BlankConsoleLab/BlankConsoleLab.cpp
parentAdjust end calculations and streamine (diff)
downloadcst116-lab1-joetraver30-3009c0d82ce189e3e67cb09f57190fddcdc5bf58.tar.xz
cst116-lab1-joetraver30-3009c0d82ce189e3e67cb09f57190fddcdc5bf58.zip
Added Pseudo Code
Diffstat (limited to 'BlankConsoleLab/BlankConsoleLab.cpp')
-rw-r--r--BlankConsoleLab/BlankConsoleLab.cpp6
1 files changed, 3 insertions, 3 deletions
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;