c언어 주사위게임1 [C언어] 주사위 두 개를 굴리는 함수 랜덤메소드를 이용하여 게임을 만들고 테스트하는 프로그램을 작성하시오 공부하시는대에 도움이 됐으면 좋겠습니다. 답안코드 확인해주세요! 입출력예시 입출력예시1 player1은 4 player2는 4 비겼습니다 입출력예시2 player2는 4 player1은 1 player2가 승리했습니다! 입출력예시3 player1은 5 player2는 1 player1이 승리했습니다! 더보기 #include #include #include int RollDie(void); int main(void){ int dice1, dice2; srand((int)time(NULL)); dice1=playDice(); dice2=playDice(); if(dice1> dice2){ printf("player1은 %d\nplayer2는 %d\nplayer1이 승리했습니다!",dice1,dice2); }.. 2023. 1. 7. 이전 1 다음