diff options
Diffstat (limited to 'BlankConsoleLab/BlankConsoleLab.cpp')
| -rw-r--r-- | BlankConsoleLab/BlankConsoleLab.cpp | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/BlankConsoleLab/BlankConsoleLab.cpp b/BlankConsoleLab/BlankConsoleLab.cpp index ed5f807..6d9b9f4 100644 --- a/BlankConsoleLab/BlankConsoleLab.cpp +++ b/BlankConsoleLab/BlankConsoleLab.cpp @@ -11,6 +11,14 @@ using std::endl; int main() { - cout << "Hello World!\n"; + float kitewidth; + float kitelength; + + cout << "Please enter width of kite (horizontal diagonal) in meters." << endl; + cin >> kitewidth; + cout << "Please enter length of kite (vertical diagonal) in meters." << endl; + cin >> kitelength; + //cout << kitelength << " " << kitewidth << endl; + } |