// BlankConsoleLab.cpp : This file contains the 'main' function. Program execution begins and ends there. // #include using namespace std; using std::cout; using std::cin; using std::endl; int main() { float width = 0; float length = 0; float area; float aspect_ratio; cout << "What is the width of the kite in centimeters: "; cin >> width; cout << "What is the length of the kite in centimeters: "; cin >> length; cout << "The width is " << width << " centimeters and the length is " << length << " centimeters." << endl; area = (length * width) / 2; cout << "The area of the kite is " << area / 10000 << " square meters." << endl; aspect_ratio = width / length; if (aspect_ratio >= 1) cout << "WARNING! A lower aspect ratio will provide more stability."; else (aspect_ratio < 1); cout << "Good aspect ratio."; }