blob: 21341ed76351ee99871d82430d718fc054526f8d (
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
|
// BlankConsoleLab.cpp : This file contains the 'main' function. Program execution begins and ends there.
//
/*
Wyatt Johnson
CST 116
Lab1
*/
#include <iostream>
using namespace std;
int main()
{
float width = 0, height = 0;
float area;
cout << "Please input your kites width: ";
cin >> width;
cout << endl;
cout << "Please input your kites height: ";
cin >> height;
cout << endl;
cout << "Your kites width will be: " << width << "\nYour kites height will be: " << height << endl;
}
|