diff options
Diffstat (limited to '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) ; |