// 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() { float var1; float var2; float var3; float var4; float var5; float var6; cout << "Enter a value for the width of kite one:"; cin >> var1; cout << "Enter a value for the length of kite one:"; cin >> var2; cout << "Calculating the Area of kite one:"; var3 = var1 * var2; cout << var3; cout << "\nEnter the value for the width of kite two:"; cin >> var4; cout << "Enter the value for the length of kite two:"; cin >> var5; cout << "Calculating the Area of kite two:"; var6 = var4 * var5; cout << var6; if (var3 > var6) cout << "Kite one is bigger"; else cout << "Kite two is bigger"; }