fork download
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. string visitorname;
  8.  
  9. cout << "Hello, welcome to Montgomery College! My name is Nao. May I have your name?\n";
  10. getline(cin, visitorname);
  11. cout << "Nice to meet you " << visitorname << "\n";
  12. cout << "Let me impress you with a small game.\n";
  13. cout << "Give me the age of an important person or a pet to you.\nPlease give me only a number: ";
  14.  
  15. int Age;
  16. int months;
  17. int days;
  18.  
  19. cin >> Age;
  20. cout << "You have entered " << Age << "\n";
  21. cout << "If this is for a person, the age can be expressed as " << Age << " years";
  22.  
  23. months = Age * 12;
  24. days = 30 * months;
  25.  
  26. cout << " or " << months << " months";
  27. cout << " or " << days << " days";
  28.  
  29. return 0;
  30. }
Success #stdin #stdout 0.01s 5428KB
stdin
Remy
41
stdout
Hello, welcome to Montgomery College! My name is Nao. May I have your name?
Nice to meet you Remy
Let me impress you with a small game.
Give me the age of an important person or a pet to you.
Please give me only a number: You have entered 41
If this is for a person, the age can be expressed as 41 years or 492 months or 14760 days