diff options
| -rw-r--r-- | BlankConsoleLab/BlankConsoleLab.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/BlankConsoleLab/BlankConsoleLab.cpp b/BlankConsoleLab/BlankConsoleLab.cpp index 636ab6c..df78c3d 100644 --- a/BlankConsoleLab/BlankConsoleLab.cpp +++ b/BlankConsoleLab/BlankConsoleLab.cpp @@ -58,7 +58,7 @@ int main() //Output of the area calculation to square meters. cout << "The area of the kite in squre meter is "; - cout << Mass; + cout << Area; cout << " Square Meters" <<endl; //Aspect Ratio aspectR = width / length; @@ -74,6 +74,8 @@ int main() graPull = Mass * 9.8; - cout << "Your Kite Weighs: " <<endl; + cout << "Your Kite Weighs: " << Mass << endl ; + + cout << "The gravitational pull of your kite is " << graPull << endl; } |