« All Events
7 PM – Android Game Dev – Gamas
July 12, 2023 @ 7:00 pm - 8:00 pm
Today We Did
- We reviewed all the things we have learned so far.
- We made the box00 clickable and we set either circle or cross image on the box00
Homework
- Next class is July 26 at 6 PM.
- When user click on box00, if it is “Player1” then set cross image on box00 and then switch the currentPlayer to “Player2”.
- When user click on box00, if it is “Player2” then set circle image on box00 and then switch the currentPlayer to “Player1”.
- Use an existing project in your IntelliJ
- Write a simple java codes that would print number from 0 to 100 using for loop (for int i=0; i <10; i++)
- Write a simple java codes that would print box0 to box100 using for loop. Hint: You need to use for loop similar to above and do String combination of the word “box” and the number from the “i”.