summaryrefslogtreecommitdiff
path: root/BlankConsoleLab/BlankConsoleLab.cpp
diff options
context:
space:
mode:
author[email protected] <[email protected]>2022-10-05 16:17:41 -0700
committer[email protected] <[email protected]>2022-10-05 16:17:41 -0700
commite9f004066e677315eae0d1cdad9eabc538784045 (patch)
treee566fd2834fde736420858edac44c167ca6e10a6 /BlankConsoleLab/BlankConsoleLab.cpp
parentPush 3 (diff)
downloadcst116-lab1-smith-e9f004066e677315eae0d1cdad9eabc538784045.tar.xz
cst116-lab1-smith-e9f004066e677315eae0d1cdad9eabc538784045.zip
Push 4
Diffstat (limited to 'BlankConsoleLab/BlankConsoleLab.cpp')
-rw-r--r--BlankConsoleLab/BlankConsoleLab.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/BlankConsoleLab/BlankConsoleLab.cpp b/BlankConsoleLab/BlankConsoleLab.cpp
index 4f6d6cf..9cf1e55 100644
--- a/BlankConsoleLab/BlankConsoleLab.cpp
+++ b/BlankConsoleLab/BlankConsoleLab.cpp
@@ -21,7 +21,7 @@ int main()
cout << "Please input the width of the kite in centimeters." << endl;
cin >> w;
cout << "Now please input the length of the kite in centimeters." << endl;
- cin >> l;
+ cin >> l;
//Doing the math to convert the centimeter inputs to square meter outputs
area = (w * l) / 2;