Advertisement
Guest User

Untitled

a guest
Apr 26th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. void AliStaBesediEnaki()
  2. {
  3. string beseda1;
  4. string beseda2;
  5.  
  6. cout << "Vtipaj prvo besedo: ";
  7. cin >> beseda1;
  8. cout << endl;
  9. cout << "Vtipkaj drugo besedo: ";
  10. cin >> beseda2;
  11.  
  12. cout << endl;
  13.  
  14. if(beseda2 == beseda1)
  15. {
  16. cout << "True" << endl;
  17. }
  18. else
  19. {
  20. cout << "False" << endl;
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement