Guest User

Untitled

a guest
Apr 23rd, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. int main() {
  6. cout << "Hi Emilie! I love that you're a software developer. I am one as well!" << endl;
  7. string input = "N";
  8. cout << "I would love to get to know you more. Would you like to get a cup of coffee sometime?" << endl;
  9. cout << "Enter Y for yes or N for no" << endl;
  10. cin >> input;
  11.  
  12. while (input != "Y") {
  13. cout << "Aw you sure? I think we'd really get along!" << endl;
  14. cout << "Enter Y for yes or N for no" << endl;
  15. cin >> input;
  16. }
  17.  
  18. cout << "Awesome! Just respond to this message with a day and time you're free and your favorite coffee shop!" << endl;
  19. return 0;
  20. }
Add Comment
Please, Sign In to add comment