diff options
Diffstat (limited to 'BlankConsoleLab/BlankConsoleLab.cpp')
| -rw-r--r-- | BlankConsoleLab/BlankConsoleLab.cpp | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/BlankConsoleLab/BlankConsoleLab.cpp b/BlankConsoleLab/BlankConsoleLab.cpp index a9c4b9e..90395d3 100644 --- a/BlankConsoleLab/BlankConsoleLab.cpp +++ b/BlankConsoleLab/BlankConsoleLab.cpp @@ -4,6 +4,12 @@ using namespace std; int main() { - cout << "Hello World!" << endl; + int width, int height; + + cout << "Kite Math 0.1" << endl; + cout << "Please input the width of your kite:" << endl; + cin >> width; + cout << "Please input the height of your kite:" << endl; + cin >> height; } |