diff options
Diffstat (limited to 'BlankConsoleLab/CST116-Lab1-Fine.cpp')
| -rw-r--r-- | BlankConsoleLab/CST116-Lab1-Fine.cpp | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/BlankConsoleLab/CST116-Lab1-Fine.cpp b/BlankConsoleLab/CST116-Lab1-Fine.cpp new file mode 100644 index 0000000..b46897c --- /dev/null +++ b/BlankConsoleLab/CST116-Lab1-Fine.cpp @@ -0,0 +1,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; + +} + |