diff options
| author | WilliamBishopCST116 <[email protected]> | 2022-10-17 15:15:48 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-10-17 15:15:48 -0700 |
| commit | 068711455ce3316d4504b4bc812130ade058fdab (patch) | |
| tree | e025753ed298a502a46dabf80af6f0fd3fd82005 /CST116-Lab1-Bishop-Submission11.cpp | |
| parent | Update CST116-Lab1-Bishop-Submission11.cpp (diff) | |
| download | cst116-lab1-williambishopcst116-068711455ce3316d4504b4bc812130ade058fdab.tar.xz cst116-lab1-williambishopcst116-068711455ce3316d4504b4bc812130ade058fdab.zip | |
Update CST116-Lab1-Bishop-Submission11.cpp
Diffstat (limited to 'CST116-Lab1-Bishop-Submission11.cpp')
| -rw-r--r-- | CST116-Lab1-Bishop-Submission11.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/CST116-Lab1-Bishop-Submission11.cpp b/CST116-Lab1-Bishop-Submission11.cpp index e283ce5..f2ccf34 100644 --- a/CST116-Lab1-Bishop-Submission11.cpp +++ b/CST116-Lab1-Bishop-Submission11.cpp @@ -31,10 +31,10 @@ int main() int areaofkite; areaofkite = (horizontal_kitew * vertical_kitel) ; - cout << "The area of the kite is " << areaofkite; + cout << "The area of the kite is " << areaofkite<<"sq cm"; float Area_of_kiteM; Area_of_kiteM = areaofkite / 10000; - cout << " " << Area_of_kiteM << endl; + cout << " " << Area_of_kiteM <<"sq meters"<< endl; float aspectratio; aspectratio = horizontal_kitew / vertical_kitel; cout << " Our aspect ratio is : " << aspectratio << endl; |