diff options
Diffstat (limited to 'BlankConsoleLab/BlankConsoleLab.cpp')
| -rw-r--r-- | BlankConsoleLab/BlankConsoleLab.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/BlankConsoleLab/BlankConsoleLab.cpp b/BlankConsoleLab/BlankConsoleLab.cpp index 930a4bb..cd57d54 100644 --- a/BlankConsoleLab/BlankConsoleLab.cpp +++ b/BlankConsoleLab/BlankConsoleLab.cpp @@ -3,6 +3,7 @@ #include <iostream> + using namespace std; using std::cout; @@ -18,5 +19,8 @@ int main() cout << "Enter the length of the kite in meters." << endl; cin >> length; + + cout << "You have entered " << width << " for width." << endl; + cout << "You have entered " << length << " for length." << endl; } |