[논리적 사유연습]BirthdayParadox 문제해결
//n명 중에서 생일이 같은 사람이 몇명? _ birthday paradox #include #include #include int main(){int i, j, k, detect, cnt, p[400];//i,j,k:반복변수 detect:detect변수 cnt:cnt변수 p[400]:400명까지 생일 저장하는 배열int pCnt,iCnt;//pCnt:사람수 iCnt:표본실험횟수 srand((unsigned int)time(0));//주어진 배열의 크기와 마이너스 값을 입력받지 않도록 do while문을 사용do{scanf("%d %d", &pCnt, &iCnt);}while(pCnt 400 || iCnt
2013.05.06