// CST116-Lab1-Smith.cpp : This file contains the 'main' function. Program execution begins and ends there. /*Benjamin Smith * CST116 * Lab 1 * Input and Output and If statements */ #include using std::cin; using std::cout; using std::endl; //Initializing Variables float w, l, area, aspect_ratio; int main() { //Collecting the length and width of the kite in centimeters while !(w >= 1) cout << "Please input the width of the kite in centimeters." << endl; cin >> w; cout << "Now please input the length of the kite in centimeters." << endl; cin >> l; //Doing the math to convert the centimeter inputs to square meter outputs area = (w * l) / 2; area /= 10000; //Displaying the area in square meters cout << "The area of the kite in square meters is: " << area << endl << endl; //Setting the aspect ratio of width to length aspect_ratio = w / l; //Determining if the aspect ratio is too high if (aspect_ratio >= 1) { cout << "Your aspect ratio of width to length is: " << aspect_ratio << ", which is quite high." << endl << "It is recommended to use a smaller aspect ratio to maintain stability." << endl << endl; } return 0; } // Run program: Ctrl + F5 or Debug > Start Without Debugging menu // Debug program: F5 or Debug > Start Debugging menu // Tips for Getting Started: // 1. Use the Solution Explorer window to add/manage files // 2. Use the Team Explorer window to connect to source control // 3. Use the Output window to see build output and other messages // 4. Use the Error List window to view errors // 5. Go to Project > Add New Item to create new code files, or Project > Add Existing Item to add existing code files to the project // 6. In the future, to open this project again, go to File > Open > Project and select the .sln file