#include #include using std::cout; using std::cin; using std::endl; int main() { float Width; float Length; float Area; float Area2; float aspectr; //float celcius2 = 0; cout << "What is the Width of your kite in centimeters? "; cin >> Width; cout << "What is the Length of your kite in centimeters? "; cin >> Length; Area = (Width * Length) / 2; Area2 = Area / 10000; aspectr = Width / Length; cout << "Area in Meters = " << Area2 << endl; cout << "Aspect Ratio = " << aspectr; return 0; }