blob: 6d9b9f4f6b39bc2072359643ff1931c9d68bbb66 (
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
|
// 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;
}
|