[Java+SpringBoot+JPA] 가위 바위 보 게임
🟣 카테고리 생성 fragments > GBB.html GBB 🟣 layout 생성 game> gbbin.html 가위 바위 보 게임 가위, 바위, 보 게임을 시작해보세요. 게임시작 가위 바위 보 가위 바위 보 결과확인 game> gbbout.html ▪️ 숫자(정수)를 한글로 출력하는 방법 컴퓨터 : [[${computer == 1 ? '가위' : (computer == 2 ? '바위' : '보')}]] 사용자 : [[${userSelect == 1 ? '가위' : (userSelect == 2 ? '바위' : '보')}]] 결과 : [[${result}]] 다시 게임 🟣 Controller 생성 ▪️ 매개변수 : Integer userSelect ▪️ 컴퓨터 랜던값 : Random random = n..
2024.01.07