From a66070decff8e94389ade0fc827fba8427a83e5a Mon Sep 17 00:00:00 2001 From: WilliamBishopCST116 <114703314+WilliamBishopCST116@users.noreply.github.com> Date: Mon, 17 Oct 2022 15:07:38 -0700 Subject: Update CST116-Lab1-Bishop-Submission11.cpp --- CST116-Lab1-Bishop-Submission11.cpp | 6 +++--- 1 file 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) ; -- cgit v1.2.3