summaryrefslogtreecommitdiff
path: root/BlankConsoleLab/CST116-Lab1-Fine.cpp
blob: b46897cc51dd5bdfec8e1f3acfcd503fc3a2c5aa (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
// 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()
{
    int length;
    int width;

    cout << "How long is your kite in centimeters? ";
    cin >> length;
    cout << endl << "How wide is your kite in centimeters? ";
    cin >> width;
    
}