summaryrefslogtreecommitdiff
path: root/CST116-Lab1-Bishop-Submission11.cpp
diff options
context:
space:
mode:
authorWilliamBishopCST116 <[email protected]>2022-10-17 15:07:38 -0700
committerGitHub <[email protected]>2022-10-17 15:07:38 -0700
commita66070decff8e94389ade0fc827fba8427a83e5a (patch)
treeca2d83cf4570dd11056bfe86de894a562975cdf3 /CST116-Lab1-Bishop-Submission11.cpp
parentUpdate CST116-Lab1-Bishop-Submission11.cpp (diff)
downloadcst116-lab1-williambishopcst116-a66070decff8e94389ade0fc827fba8427a83e5a.tar.xz
cst116-lab1-williambishopcst116-a66070decff8e94389ade0fc827fba8427a83e5a.zip
Update CST116-Lab1-Bishop-Submission11.cpp
Diffstat (limited to 'CST116-Lab1-Bishop-Submission11.cpp')
-rw-r--r--CST116-Lab1-Bishop-Submission11.cpp6
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) ;