Notice
Recent Posts
Recent Comments
Link
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
Archives
Today
Total
관리 메뉴

괴발개발 개발하다

[ C언어 ] 주사위 무작위 숫자 누적 코드 본문

C언어

[ C언어 ] 주사위 무작위 숫자 누적 코드

괴발새발개발자 2021. 7. 4. 23:04
// 6면 주사위를 100번 굴려서 나온 각 면의 수를 배열에 저장하여 출력

#include <stdio.h>
#include <time.h> 

 int main(){
 		
	//int sum;
 	
 	int dice[6] = {0};
	int i, n = 0;
	srand(time(NULL));
	
	do{
		i++;
		n = rand() % 6 + 1;
		dice[n-1] = dice[n-1]+1;
	}while(i<100);
	
	for(i=0; i<6; i++){
		printf("[%d] = %d\n", i+1, dice[i]);
	}
 }
 
 
 // 출력 예)
[1] = 16
[2] = 12
[3] = 21
[4] = 14
[5] = 16
[6] = 21