// 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() { int length; int width; float area; float meters; float ratio; cout << "Enter Length of kite in cm: "; cin >> length; cout << "Enter width of kite in cm: "; cin >> width; cout << "Length = " << length << " cm" << endl; cout << "Width = " << width << " cm" << endl; // area calculation area = (length * width) / 2; // unit conversion meters = area / 10000; cout << "Kite area: " << meters << " square meters" << endl; // aspect ratio ratio = width / length; }