Situatie
Creati un joc Hartie-Piatra-Foarfece la care participa 2 persoane. (Nota: folositi-va de functia “input()” pentru a cere date de la jucatori; in momentul cand cineva castiga, printati un mesaj de felicitare.
Solutie
nume1 = input(“Salut jucator1, cum te numesti? “)
nume2 = input(“Salut jucator2, cum te numesti? “)
phf1 = input(nume1 + ” , alege: piatra, hartie sau foarfeca: “)
phf2 = input(nume2 + ” , alege: piatra, hartie sau foarfeca: “)
if phf1 == “piatra” and phf2 == “foarfeca”:
print(“Felicitari ” + nume1 + “, ai castigat!”)
if phf1 == “hartie” and phf2 == “piatra”:
print(“Felicitari ” + nume1 + ” , ai castigat”)
if phf1 == “foarfeca” and phf2 == “hartie”:
print(“Felicitari ” + nume1 + ” , ai castigat”)
if phf2 == “piatra” and phf1 == “foarfeca”:
print(“Felicitari ” + nume2 + “, ai castigat!”)
if phf2 == “hartie” and phf1 == “piatra”:
print(“Felicitari ” + nume2 + ” , ai castigat”)
if phf2 == “foarfeca” and phf1 == “hartie”:
print(“Felicitari ” + nume2 + ” , ai castigat”)
if phf1 == “PIATRA” and phf2 == “FOARFECA”:
print(“Felicitari ” + nume1 + “, ai castigat!”)
if phf1 == “HARTIE” and phf2 == “PIATRA”:
print(“Felicitari ” + nume1 + ” , ai castigat”)
if phf1 == “FOARFECA” and phf2 == “HARTIE”:
print(“Felicitari ” + nume1 + ” , ai castigat”)
if phf2 == “PIATRA” and phf1 == “FOARFECA”:
print(“Felicitari ” + nume2 + “, ai castigat!”)
if phf2 == “HARTIE” and phf1 == “PIATRA”:
print(“Felicitari ” + nume2 + ” , ai castigat”)
if phf2 == “FOARFECA” and phf1 == “HARTIE”:
print(“Felicitari ” + nume2 + ” , ai castigat”)
Leave A Comment?