Dec 10, 2009 at 6:16pm
e.g.
If I type "mozda" in console, It will cout << "Volim te cunkice!!" instead of cout << "De se odluci!"
Dec 10, 2009 at 6:23pm
Change:
if (dolazak == "da"||"ok"||"oki"||"okej"||"aha"||"hocu"||"naravno")
with:
if (dolazak == "da" || dolazak == "ok" || dolazak == "oki" || dolazak == "okej" || dolazak == "aha" || dolazak == "hocu" || dolazak == "naravno")
Dec 10, 2009 at 6:25pm
And in the while loop you have to do what I did aswell btw :)