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