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 3 yhteenveto: Virheellinen muuttujan nimi esimerkissä #83

Open
sklaunonen opened this issue Sep 2, 2018 · 1 comment
Open

Osa 3 yhteenveto: Virheellinen muuttujan nimi esimerkissä #83

sklaunonen opened this issue Sep 2, 2018 · 1 comment

Comments

@sklaunonen
Copy link

Kun yhteenvedossa esitellään sovellusrunko ensimmäisen kerran, yritetään koodin lopussa tulostaa eri muuttujien arvoja. Tulostus yrittää käyttää muuttujaa syote ja muuttujaa ja metodia syoteet.size(), joita ei ole olemassa.

@sklaunonen sklaunonen changed the title Yhteenveto: Virheellinen muuttujan nimi esimerkissä Osa 3 yhteenveto: Virheellinen muuttujan nimi esimerkissä Sep 2, 2018
@TeroLehtinen
Copy link

Korjaus:

//System.out.println("Syötit " + syote + ", arvasin " + arvaus + ".");
System.out.println("Syötit " + luku + ", arvasin " + arvaus + ".");

//System.out.println("Pelaajan voitot: " + (syotteet.size() - voitot));
System.out.println("Pelaajan voitot: " + (luvut.size() - voitot));

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

2 participants