//William Bishop //williambishop@oit.edu // 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() { int kite; int horizontal_kitew; int vertical_kitel; cout << "Please enter a width of the kite" << endl; cin >> horizontal_kitew cout << "Your width is: " << horizontal_kitew << endl; cout << "Please enter your height of the kite " << endl; cin >> vertical_kitel; cout << "Our width and the height is: " << horizontal_kitew << "and " << vertical_kitel << endl; int areaofkite; int areaofkite = (horizontal_kitew * vertical_kitel) / 2; cout << "The area of the kite is " << areaofkite; float Area_of_kiteM; float Area_of_kiteM = areaofkite / 10000; cout << " " << Area_of_kiteM << endl; float aspectratio; }