// BlankConsoleLab.cpp : This file contains the 'main' function. Program execution begins and ends there. // #include using std::cout; using std::cin; using std::endl; int main() { int width; int length; float areaCM; float areaM; float ratio; cout << "Please enter the length of your kite." << endl; cin >> length; cout << "\nPlease enter the width of your kite." << endl; cin >> width; cout << "\n"; areaCM = (width * length) / 2; areaM = areaCM / 10000; ratio = width / length; if (ratio >= 1) { cout << "WARNING: A lower aspect ratio \nwill provide more stability!\n" << endl; } cout << "Your kite has an area of: " << areaM << " square meters" << endl; cout << "Your kite has an area of: " << areaCM << " square centimeters" << endl; }