// 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; //Variables used in the programming. float w; float length; float Area; float aspectR; int main() { //Welcome Message cout << "Hello welcome to the Kite App" << endl << endl; cout << "Please enter your kite's width in CM "<< endl; cin >> w; while (w < 1 || w > 400) { cout << "Please enter your kite's width in CM " << endl; cin >> w; } //Enter Width and Length in centimeters cout << "Please Enter your kite's length in CM " << endl; cin >> length; while (length < 1 || length > 400) { cout << "Please Enter your kite's length in CM " << endl; cin >> length; } //Output the measures entered by user cout << "Your kite Measurements is "; cout << w; cout << " By "; cout <= 1) { cout << "Keep in mind, a lower aspect ratio would provide more stability"; } }