diff options
Diffstat (limited to 'BlankConsoleLab/BlankConsoleLab.cpp')
| -rw-r--r-- | BlankConsoleLab/BlankConsoleLab.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/BlankConsoleLab/BlankConsoleLab.cpp b/BlankConsoleLab/BlankConsoleLab.cpp index 85c6c8d..d08fb77 100644 --- a/BlankConsoleLab/BlankConsoleLab.cpp +++ b/BlankConsoleLab/BlankConsoleLab.cpp @@ -24,10 +24,10 @@ int main() do { - cout << "Enter Length of kite in cm: "; + cout << "Enter length of kite in cm: "; cin >> length; - cout << "Enter Width of kite in cm: "; + cout << "Enter width of kite in cm: "; cin >> width; @@ -44,7 +44,7 @@ int main() // unit conversion area_m = area_cm / 10000; - cout << "Kite area: " << area_m << " square meters" << endl; + cout << "Kite area = " << area_m << " square meters" << endl; // aspect ratio ratio = width / length; |