summaryrefslogtreecommitdiff
path: root/BlankConsoleLab/BlankConsoleLab.cpp
blob: e8982cf2e166ff5186a7c6f555f24dc7c15ffb62 (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
// BlankConsoleLab.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>

using namespace std;

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

int main()
{
    float kitewidth;
    float kitelength;

    cout << "Please enter width of kite (horizontal diagonal) in meters." << endl;
    cin >> kitewidth;
    cout << "Please enter length of kite (vertical diagonal) in meters." << endl;
    cin >> kitelength;

    cout << kitelength << " " << kitewidth << endl;

}