c언어 주사위 함수1 [C언어] 주사위를 굴려서 나오는 수를 반환하는 함수를 작성하고 출력하시오 더보기 #include #include #include int RollDie(void); int main(void) { int roll1, roll2; srand((int)time(NULL)); roll1=RollDie(); roll2=RollDie(); printf("주사위 결과 : %d, %d \n", roll1, roll2); return 0; } int RollDie() { return rand() % 6 + 1; } 더 많은 C언어 글이 궁금하다면? https://chuinggun.tistory.com/category/C%EC%96%B8%EC%96%B4 2022. 12. 7. 이전 1 다음