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 ed5f807..930a4bb 100644 --- a/BlankConsoleLab/BlankConsoleLab.cpp +++ b/BlankConsoleLab/BlankConsoleLab.cpp @@ -11,6 +11,12 @@ using std::endl; int main() { - cout << "Hello World!\n"; + int width, length; + + cout << "Enter the width of the kite in meters." << endl; + cin >> width; + + cout << "Enter the length of the kite in meters." << endl; + cin >> length; } |