// 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, length; cout << "Enter the width of the kite in meters." << endl; cin >> width; cout << "Enter the length of the kite in meters." << endl; cin >> length; cout << "You have entered " << width << " for width." << endl; cout << "You have entered " << length << " for length." << endl; float ratio = (width / length); if (ratio >= 1) { cout << "WARNING: A lower aspect ratio will provide more stability." << endl; } float areacm = (width * length/2); float areamt = (areacm / 10000); cout << "The area of the kite in square meters is " << areamt << endl; }