// BlankConsoleLab.cpp : This file contains the 'main' function. Program execution begins and ends there. // /* Wyatt Johnson CST 116 Lab1 */ #include using namespace std; int main() { float width = 0, length = 0; cout << "Please input your kites width in centimeters: "; cin >> width; cout << endl; cout << "Please input your kites height in centimeters: "; cin >> length; cout << endl; cout << "Your kites width will be: " << width << " cm\nYour kites height will be: " << length << " cm" << endl; float area = (width / length) / 10000; cout << "The area of your kite in square meters is " << area << endl; float aspect_ratio = width / length; if (aspect_ratio > 1) { cout << "Your aspect ration is greater than 1 (width/length: " << width << "/" << length << " = " << aspect_ratio << ")\nLower aspect ratios will have greater stability." << endl; } }