// 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() { //Variables float WidthK; //Width of Kite float LengthK; //Length of Kite float CMarea; //Centimeters Area float Marea; //Meters Area float AR; //Aspect Ratio float Mass; //Mass float GP; //Gravitational Pull float KGmass; cout << "input width of the kite in cm ->> "; cin >> WidthK; cout << "input length of the kite in cm ->> "; cin >> LengthK; CMarea = (WidthK * LengthK) / 2; Marea = CMarea / 10000; AR = WidthK / LengthK; Mass = ( 135 / Marea); KGmass = (Mass / 1000); GP = KGmass * 9.8; cout << "The area of the kite in centimeters = " << CMarea << endl; cout << "The area of the kite in meters = " << Marea << endl; cout << "The aspect ratio of the kite = " << AR << endl; cout << "The mass of the kite in kilograms = " << KGmass << endl; cout << "The gravitational pull on the kite in newtons = " << GP << endl; if (AR >= 1) { //cout << "A lower aspect ratio would provide more stability"; } }