loop to repeat a game of tic tac toe
问题 i wrote a code that plays tic tac toe from start to end. After the game, i need to ask the user if they want to repeat the game (yes/no), and repeat until the user enter no. I'm not sure where to implement the loop or how, so help would be appreciated. the code is as follows: import java.util.Scanner; public class bb2 { static char place1 = ' '; static char place2 = ' '; static char place3 = ' '; static char place4 = ' '; static char place5 = ' '; static char place6 = ' '; static char place7