Advertisement
Roboaudi

Untitled

Jan 17th, 2020
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. А за тук какво би казал? със firstName,lsatName,town,age е ок, но щом сложа имената и годините и дава 4 грешки.
  2. #include <iostream>
  3. #include <cmath>
  4.  
  5. using namespace std;
  6.  
  7. int main()
  8. {
  9. string Ivan;
  10. cin >> Ivan;
  11.  
  12. string Ivanov;
  13. cin >> Ivanov;
  14.  
  15. int 25;
  16. cin >> 25;
  17.  
  18. string Sofia;
  19. cin >> Sofia;
  20.  
  21. cout << "You are " << Ivan << " " << Ivanov << ", a ";
  22. cout << 25 << "-years old person from ";
  23. cout << Sofia << "." << endl;
  24. return 0;
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement