// CST 116, Lab 1 - Alexandra Apetroaei #include using namespace std; using std::cout; using std::cin; using std::endl; int main() { float width; float height; float area; float aspect_ratio; float isStable = false; while (isStable == false) { cout << "Insert width (in centimeters): " /endl ; cin >> height; cout << "Insert height (in centimeters): " /endl ; cin >> width; } }