summaryrefslogtreecommitdiff
path: root/BlankConsoleLab/BlankConsoleLab.cpp
blob: 098d8653865d7767d179b03217a0aef3e6390c18 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// BlankConsoleLab.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <iomanip>

using namespace std;

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

int main()
{
    int kwidth;

    cout << "What is the width of the kite in centimeters?: ";
    cin >> kwidth;
}