// 동일한 숫자가 난수로 발생하지 않도록 한다. #include <stdlib.h> #include <time.h> void makeUniqueData(int data[], int size){ int i,j; int temp; int flag; // 난생 발생 seed값 지정 srand((unsigned int)time(NULL)); data[0] = rand() % 100; i=1; while(i<size){ flag = 1; j = 0; temp = rand() % 100; while(j<i && flag){ if(data[j] == temp){..