// BlankConsoleLab.cpp : This file contains the 'main' function. Program execution begins and ends there. // /* Wyatt Johnson CST 116 Lab1 */ #include using namespace std; int main() { float width = 0, height = 0; float area; cout << "Please input your kites width: "; cin >> width; cout << endl; cout << "Please input your kites height: "; cin >> height; cout << endl; cout << "Your kites width will be: " << width << "\nYour kites height will be: " << height << endl; }