#include #include #include int get_dice_face(); int main() { srand((unsigned)time(NULL)); for(int i=0;i<1000;i++) { get_dice_face(); } } int get_dice_face() { static int y = 0; static int dice[5] = { 0, }; int x=0; x = rand() % 6; if (x == 0) dice[0]++; else if (x == 1) dice[1]++; else if (x == 2) dice[2]++; else if (x == 3) dice[3]++; else if (x == 4) dice[4]++; else if (x == 5) dice[5]++; y++; if (y!=0&&y % 100 == 0) printf("%d %d %d %d %d %d \n", dice[0], dice[1]...