Advertisement
Guest User

Untitled

a guest
Nov 17th, 2019
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. string days[3];
  8. int numbers[3]
  9.  
  10. cout << "u can write this introduction to pet store" << endl;
  11. cout << "What day is it?" << endl;
  12. cin >> days[0];
  13. cout << "And how many animals did you adopt?" << endl;
  14. cin >> numbers[0];
  15. cout << "Okay so today is " << days[0] << " and you adopted " << numbers[0] << endl;
  16.  
  17. cout << "u can write this introduction to pet store" << endl;
  18. cout << "What day is it?" << endl;
  19. cin >> days[1];
  20. cout << "And how many animals did you adopt?" << endl;
  21. cin >> numbers[1];
  22. cout << "Okay so today is " << days[1] << " and you adopted " << numbers[1] << endl;
  23.  
  24. cout << "u can write this introduction to pet store" << endl;
  25. cout << "What day is it?" << endl;
  26. cin >> days[2];
  27. cout << "And how many animals did you adopt?" << endl;
  28. cin >> numbers[2];
  29. cout << "Okay so today is " << days[2] << " and you adopted " << numbers[2] << endl;
  30. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement