Guest User

Untitled

a guest
Nov 18th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. public class Indovinello {
  2. String risposta;
  3. Indovinello(String risposta) {
  4. // this.risposta = risposta
  5. if (this.risposta.equals("paperino"))
  6. System.out.println("hai vinto!");
  7. }
  8. }
  9.  
  10. public class JavaApplication18 {
  11. public static void main(String[] args) {
  12. Indovinello risposta1 = new Indovinello("Paperone");
  13. Indovinello risposta2 = new Indovinello("Paperino");
  14. }
  15.  
  16. }
Add Comment
Please, Sign In to add comment