diff options
| author | [email protected] <[email protected]> | 2022-10-05 16:17:25 -0700 |
|---|---|---|
| committer | [email protected] <[email protected]> | 2022-10-05 16:17:25 -0700 |
| commit | 8d9026e160c13a83bec5d1e091e7b810951a012d (patch) | |
| tree | ad803bffc93d0f02fdb8c611323b9bf1f67dff23 /BlankConsoleLab/BlankConsoleLab.cpp | |
| parent | Push 2 (diff) | |
| download | cst116-lab1-smith-8d9026e160c13a83bec5d1e091e7b810951a012d.tar.xz cst116-lab1-smith-8d9026e160c13a83bec5d1e091e7b810951a012d.zip | |
Push 3
Diffstat (limited to 'BlankConsoleLab/BlankConsoleLab.cpp')
| -rw-r--r-- | BlankConsoleLab/BlankConsoleLab.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/BlankConsoleLab/BlankConsoleLab.cpp b/BlankConsoleLab/BlankConsoleLab.cpp index 9cf1e55..4f6d6cf 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; |