Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <string>
- using namespace std;
- string UcitajIme()
- {
- cout << "Unesi ime: ";
- string ime;
- cin >> ime;
- return ime;
- }
- void PorukaKorisniku(string ime) {
- string poruka = "Zdravo " + ime + "!";
- cout << poruka;
- }
- int main() {
- string ime = UcitajIme();
- PorukaKorisniku(ime);
- system("pause>nul");
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment