int i =0; if (i=0) { system.out.println("Play platform game"); }else if (i=1){ system.out.println("Play RPG games"); }else{ system.out.println("Go sleep"); }

6

2

You should int i = 2

2

0

while(i > 0){ if(i == 1){ i = 999999999; printf("Keep playing Tekken!"); }else i--; }

2

0