/* * Andrei Florea - CST 116 - Lab 1 (Part 1 and Part 2) - Learning input, output, if statements, loops, simple * calculations * * The purpose of this program is to take input regarding kite specifications and output * if the kite is efficient at flying or if it is able to fly. * */ #include using namespace std; using std::cout; using std::cin; using std::endl; int main() { float width, length; cout << "Please enter the WIDTH of your kite in centimeters (decimals are OK): "; cin >> width; cout << "Please enter the LENGTH of your kite in centimeters (decimals are OK): "; cin >> length; }