diff options
| author | Trevor Bouchillon <[email protected]> | 2022-10-16 16:38:25 -0700 |
|---|---|---|
| committer | Trevor Bouchillon <[email protected]> | 2022-10-16 16:38:25 -0700 |
| commit | b13d2d528a9a6d7ab88d432ea2a0d349edd882a9 (patch) | |
| tree | d5604ff635749026f44f094b7b615485026cea32 | |
| parent | aspect ratio warning (diff) | |
| download | cst116-lab1-daboochillin-b13d2d528a9a6d7ab88d432ea2a0d349edd882a9.tar.xz cst116-lab1-daboochillin-b13d2d528a9a6d7ab88d432ea2a0d349edd882a9.zip | |
added clarifying notes
| -rw-r--r-- | BlankConsoleLab/BlankConsoleLab.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/BlankConsoleLab/BlankConsoleLab.cpp b/BlankConsoleLab/BlankConsoleLab.cpp index a5e8049..bbb50d1 100644 --- a/BlankConsoleLab/BlankConsoleLab.cpp +++ b/BlankConsoleLab/BlankConsoleLab.cpp @@ -26,10 +26,10 @@ int main() cout << "Please enter length of kite (vertical diagonal) in meters." << endl; cin >> kitelength; - cout << kitelength << " " << kitewidth << endl; + cout << "Your kites length is: " kitelength << " meters, and your kites width is: " << kitewidth << " meters." endl; kiteaream = (kitewidth * kitelength) / 2; kiteareacm = kiteaream / 10000; - cout << kiteaream << endl; + cout << "Your kites area in meters is: " << kiteaream << "meters squared." << endl; kiteaspectratio = kitewidth / kitelength; if (kiteaspectratio >= 1) { |