diff options
Diffstat (limited to 'BlankConsoleLab/BlankConsoleLab.cpp')
| -rw-r--r-- | BlankConsoleLab/BlankConsoleLab.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/BlankConsoleLab/BlankConsoleLab.cpp b/BlankConsoleLab/BlankConsoleLab.cpp index e7ffca3..b77f07f 100644 --- a/BlankConsoleLab/BlankConsoleLab.cpp +++ b/BlankConsoleLab/BlankConsoleLab.cpp @@ -11,7 +11,7 @@ int main() float Area; float Area2; float aspectr; - //float celcius2 = 0; + float Mass; cout << "What is the Width of your kite in centimeters? "; cin >> Width; @@ -29,10 +29,11 @@ int main() cout << "Aspect Ratio = " << aspectr << endl; if (aspectr >= 1) - cout << "Your Aspect Ratio is > 1" << endl; + cout << "Your Aspect Ratio is greater than 1,\ + lower aspect ratio would provide more stability" << endl; else if (aspectr < 1) - cout << "Your Aspect Ratio is < 1" << endl; + cout << "Your Aspect Ratio is less than 1, Good!" << endl; return 0; }
\ No newline at end of file |