Advertisement
Guest User

dziwadło

a guest
Nov 26th, 2014
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. int main()
  4.  
  5. {
  6.  
  7. using namespace std;
  8.  
  9. string imie, nazwisko;
  10.  
  11.  
  12.  
  13. cout << "Podaj imię: ";
  14.  
  15. cin >> imie;
  16.  
  17.  
  18.  
  19. cout << "Podaj nazwisko: ";
  20.  
  21. cin >> nazwisko;
  22.  
  23.  
  24.  
  25. cout << "Dlugosc imienia = " << imie.length() << endl;
  26.  
  27. cout << "Dlugosc nazwiska = " << nazwisko.length() << endl;
  28.  
  29. return 0;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement