summaryrefslogtreecommitdiff
path: root/BlankConsoleLab/BlankConsoleLab.cpp
blob: e192845c81a31437578ee172c4508864df04e9dd (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*
*  BlankConsoleLab.cpp : This file contains the 'main' function.Program execution begins and ends there.
* 
* Morgan Cyrus
* CST116_Lab1_Cyrus 
* Kite Lab 
*/

#include <iostream>

using std::cout;
using std::cin;
using std::endl;

float kiteCalc(float wid, float len);
float aspectCalc(float wid, float len);

int main()
{
    float kiteWidth = 0;
    float kiteLen = 0;
    float kiteArea = 0;

    cout << "Enter value for kite width in cm: ";
    cin >> kiteWidth;
    cout << endl << "Enter value for kite length in cm: ";
    cin >> kiteLen;

    cout << "\nYou have entered " << kiteWidth << "cm for kite width, and " << kiteLen << "cm for kite length." << endl;

    //calculate the area of the kite and store in kiteArea
    kiteArea = kiteCalc(kiteWidth, kiteLen);
    cout << "The area of the kite, in square meters, is: " << kiteArea << endl;

    //calculate the aspect ratio of the kite and spit out a message to the user if the aspect ratio is greater than or equal to 1
    aspectCalc(kiteWidth, kiteLen);
}

float kiteCalc(float wid, float len)
{
    //calculate kite area in cm^2
    float kiteAreaCalc = (wid * len)/2;

    //convert cm^2 to meters^2
    kiteAreaCalc = kiteAreaCalc / 1000;

    return kiteAreaCalc;
}

float aspectCalc(float wid, float len)
{
    // calculate the aspect ratio of the kite using input from the user in main()
    float aspectRatioCalc = (wid / len);

    if (aspectRatioCalc >= 1)
    {
        cout << "Your kite has an aspect ratio of: " << aspectRatioCalc << endl;
        cout << "a lower aspect ratio would provide more stability. \n";

        return 0;
    }
    else
    {
        return 0;
    }
    
}