// BlankConsoleLab.cpp : This file contains the 'main' function. Program execution begins and ends there. // #include #include using namespace std; using std::cout; using std::cin; using std::endl; using std::setprecision; float width; float length; float area; float sqmarea; float aspectratio; int main() { cout << "Insert Kite width: " << endl; cin >> width ; cout << "Insert Kite length: " << endl; cin >> length ; cout << "Our kite has a width of " << width << " and a length of " << length << " both measured in cm." << endl; float area = width * length; cout << " Our kite has an area of " << area << " in cm^2." << endl; float sqmarea = area / 10000; cout << " Our area in square meters is " << sqmarea << endl; float aspectratio = width / length; cout << fixed << setprecision(2) << " Our kite has an aspect ratio of " << aspectratio << endl; if (aspectratio >= 1) { cout << "A lower aspect ratio my result in better stability in our kite" << endl; } }