#include #include #include int gen_door(void) { unsigned int rn = 0; if (getrandom(&rn, sizeof(unsigned int), GRND_NONBLOCK) == 1){ perror("getrandom"); exit(1); } return(rn % 3 + 1); } int main(void) { int prize_door; int door_before_switch; int number_games; int win_switch = 0; int win_noswitch = 0; for(number_games = 0; number_games < 10000; number_games++){ prize_door = gen_door(); door_before_switch = gen_door(); if (door_before_switch == prize_door){ /* for not switching */ win_noswitch++; } else{ /* for switching */ win_switch++; } } printf("Won %d (%f%%)games where we switched\n", win_switch, (double) win_switch / (double) number_games); printf("Won %d (%f%%)games where we did notswitch\n", win_noswitch, (double) win_noswitch / (double) number_games); return(0); }