Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2014
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. string name;
  8. int age;
  9. string Lname;
  10. cout << "Enter your name" << endl;
  11. cin >> name;
  12. cout << "Enter your last name" << endl;
  13. cin >> Lname;
  14. cout << "Enter your age" << endl;
  15. cin >> age;
  16.  
  17. }
  18.  
  19.  
  20.  
  21. Symbol 'cin' could not be resolved hello.cpp /hello/src line 11 Semantic Error
  22. Symbol 'cin' could not be resolved hello.cpp /hello/src line 13 Semantic Error
  23. Symbol 'cin' could not be resolved hello.cpp /hello/src line 15 Semantic Error
  24. Symbol 'cout' could not be resolved hello.cpp /hello/src line 10 Semantic Error
  25. Symbol 'cout' could not be resolved hello.cpp /hello/src line 12 Semantic Error
  26. Symbol 'cout' could not be resolved hello.cpp /hello/src line 14 Semantic Error
  27. Symbol 'endl' could not be resolved hello.cpp /hello/src line 10 Semantic Error
  28. Symbol 'endl' could not be resolved hello.cpp /hello/src line 12 Semantic Error
  29. Symbol 'endl' could not be resolved hello.cpp /hello/src line 14 Semantic Error
  30. Symbol 'std' could not be resolved hello.cpp /hello/src line 3 Semantic Error
  31. Type 'string' could not be resolved hello.cpp /hello/src line 7 Semantic Error
  32. Type 'string' could not be resolved hello.cpp /hello/src line 9 Semantic Error
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement