// BlankConsoleLab.cpp : This file contains the 'main' function. Program execution begins and ends there. // #include using namespace std; int GetArea(int length, int width); using std::cout; using std::cin; using std::endl; int main() { int length; int width; int correct = 0; float area; while (correct == 0) { cout << "How long is your kite in centimeters? "; cin >> length; cout << endl << "How wide is your kite in centimeters? "; cin >> width; cout << endl << "Your kite is " << length << "cm long and " << width << "cm wide? 1=Yes/ 0=No "; cin >> correct; cout << endl; } cout << "Calculating area in square meters..." << endl; area = (length * width) / 2.0; area = area / 10000; cout << "Your Kite's area is " << area << "meters squared."; }