// CST 116, Lab 1 - Alexandra Apetroaei #include using namespace std; using std::cout; using std::cin; using std::endl; int main() { float width; float length; float area; float aspect_ratio; float isStable = false; while (isStable == false) { // Ask user for width and length in centimeters cout << "Insert width (in centimeters): " << endl ; cin >> width; cout << "Insert length (in centimeters): " << endl ; cin >> length; // Display width and length to user cout << "You entered: " << width << "cm for width, and " << length << "cm for length" << endl; // Formula to compute area of a kite area = ((width * length) / 2) / 1000; cout << "The area of the kite is: " << area << "in square meters" << endl; aspect_ratio = (width / length); if (aspect_ratio >= 1) { cout << "Warning: " << aspect_ratio << "is too high and should be lowered to provie stability! " << endl; } else { cout << "Aspect ratio:" << aspect_ratio << endl; } return 0; } }