blob: 9cf1e55624f833b54377685fce8c1d80b827659a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
// CST116-Lab1-Smith.cpp : This file contains the 'main' function. Program execution begins and ends there.
/*Benjamin Smith
* CST116
* Lab 1
* Input and Output and If statements
*/
#include <iostream>
using std::cin;
using std::cout;
using std::endl;
//Initializing Variables
float w, l, area, aspect_ratio;
int main()
{
//Collecting the length and width of the kite in centimeters
while !(w >= 1)
cout << "Please input the width of the kite in centimeters." << endl;
cin >> w;
cout << "Now please input the length of the kite in centimeters." << endl;
cin >> l;
//Doing the math to convert the centimeter inputs to square meter outputs
area = (w * l) / 2;
area /= 10000;
//Displaying the area in square meters
cout << "The area of the kite in square meters is: " << area << endl << endl;
//Setting the aspect ratio of width to length
aspect_ratio = w / l;
//Determining if the aspect ratio is too high
if (aspect_ratio >= 1) {
cout << "Your aspect ratio of width to length is: " << aspect_ratio << ", which is quite high." << endl << "It is recommended to use a smaller aspect ratio to maintain stability." << endl << endl;
}
return 0;
}
// Run program: Ctrl + F5 or Debug > Start Without Debugging menu
// Debug program: F5 or Debug > Start Debugging menu
// Tips for Getting Started:
// 1. Use the Solution Explorer window to add/manage files
// 2. Use the Team Explorer window to connect to source control
// 3. Use the Output window to see build output and other messages
// 4. Use the Error List window to view errors
// 5. Go to Project > Add New Item to create new code files, or Project > Add Existing Item to add existing code files to the project
// 6. In the future, to open this project again, go to File > Open > Project and select the .sln file
|