#include #include using std::cout; using std::cin; using std::endl; int main() { float Width; float Length; float Area; float Area2; float aspectr; float Mass; //collects width of kite cout << "What is the Width of your kite in centimeters? "; cin >> Width; //collects length of kite cout << "What is the Length of your kite in centimeters? "; cin >> Length; //equation for area in centimeters then convert to meters Area = (Width * Length) / 2; Area2 = Area / 10000; aspectr = Width / Length; cout << "Area in Meters = " << Area2 << endl; cout << "Aspect Ratio = " << aspectr << endl; //displays aspect ratio depending size if (aspectr >= 1) 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 less than 1, Good!" << endl; return 0; }