#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int coin();
int main() {
int i, head=0, tail=0;
srand((unsigned)time(NULL));
for(i=0; i<10; i++) {
if(coin()==0) {
head++; // 앞면
}
else {
tail++;
}
}
printf("앞면 : %d\n", head);
printf("뒷면 : %d\n", tail);
return 0;
}
int coin() {
int t = rand() % 2;
if(t == 0) {
return 0; // 앞면
}
else {
return 1; // 뒷면
}
}
'IT > C++' 카테고리의 다른 글
[C++] define 입력값을 받아 합계와 평균을 구하는 성적 프로그램 (0) | 2017.06.05 |
---|---|
[C++] 가위바위보 프로그램 예제(rand) (0) | 2017.06.05 |
[C++] Dev C++ 배열 예제 프로그램 (0) | 2017.06.05 |
[C++] 반복문을 사용한 구구단 출력(for문,while문,do~while문) (0) | 2017.06.04 |
[C++] scanf를 이용한 구구단 출력 (0) | 2017.06.04 |