Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Osa 1 osio 4 tehtävä nimi ja ikä virhe #74

Open
MatiasK opened this issue Oct 23, 2023 · 0 comments
Open

Osa 1 osio 4 tehtävä nimi ja ikä virhe #74

MatiasK opened this issue Oct 23, 2023 · 0 comments

Comments

@MatiasK
Copy link

MatiasK commented Oct 23, 2023

koodini on tämä

nimi = input("Anna nimi: ")
ika = input("Anna syntymävuosi: ")

Muunnetaan ika-muuttuja kokonaisluvuksi

ika = int(ika)

if ika == 1:
tulos = ika + 1
ikateksti = "1 vuotta vanha"
else:
tulos = ika + 30
ikateksti = "30 vuotta vanha"

#Tulostetaan vastaus
print("Moi " + nimi + ", olet " + ikateksti + " vuoden " + str(tulos) + " lopussa")

ja antaa virheilmoitusta

FAIL: PythonEditorTest: test_muita_nimia1

Kun syöte on Pekka Python 2019

Tulostit:
Moi Pekka Python, olet 30 vuotta vanha vuoden 2049 lopussa
Odotettiin:
Moi Pekka Python, olet 1 vuotta vanha vuoden 2020 lopussa

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant