diff options
| author | WilliamBishopCST116 <[email protected]> | 2022-10-17 15:07:38 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-10-17 15:07:38 -0700 |
| commit | a66070decff8e94389ade0fc827fba8427a83e5a (patch) | |
| tree | ca2d83cf4570dd11056bfe86de894a562975cdf3 | |
| parent | Update CST116-Lab1-Bishop-Submission11.cpp (diff) | |
| download | cst116-lab1-williambishopcst116-a66070decff8e94389ade0fc827fba8427a83e5a.tar.xz cst116-lab1-williambishopcst116-a66070decff8e94389ade0fc827fba8427a83e5a.zip | |
Update CST116-Lab1-Bishop-Submission11.cpp
| -rw-r--r-- | CST116-Lab1-Bishop-Submission11.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/CST116-Lab1-Bishop-Submission11.cpp b/CST116-Lab1-Bishop-Submission11.cpp index cdc3583..e283ce5 100644 --- a/CST116-Lab1-Bishop-Submission11.cpp +++ b/CST116-Lab1-Bishop-Submission11.cpp @@ -22,12 +22,12 @@ int main() int horizontal_kitew; int vertical_kitel; - cout << "Please enter a width of the kite" << endl; + cout << "Please enter a width of the kite in cm" << endl; cin >> horizontal_kitew; cout << "Your width is: " << horizontal_kitew << endl; - cout << "Please enter your height of the kite " << endl; + cout << "Please enter your length of the kite in cm " << endl; cin >> vertical_kitel; - cout << "Our width and the height is: " << horizontal_kitew << "and " << vertical_kitel << endl; + cout << "Our width and the length is: " << horizontal_kitew << "and " << vertical_kitel << endl; int areaofkite; areaofkite = (horizontal_kitew * vertical_kitel) ; |