forked from DiogoPinto13/Trabalho-Programa-o-2021--sem-foro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
utils.c
36 lines (26 loc) · 743 Bytes
/
utils.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//Diogo Baptista Pinto 2020133653
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include "utils.h"
void initRandom(){
srand(time(NULL));
}
int intUniformRnd(int a, int b){
return a + rand()%(b-a+1);
}
int probEvento(float prob){
return prob > ((float)rand()/RAND_MAX);
}
// Função main () com alguns exemplos simples de utilizacao das funcoes
int main1(){
int i;
initRandom(); // esta função só deve ser chamada uma vez
printf("10 valores aleatorios uniformes entre [4, 10]:\n");
for(i=0; i<10; i++)
printf("%d\n", intUniformRnd(4, 100));
printf(" Probabilidade 0.25 de um evento suceder: \n");
for(i=0; i<10; i++)
printf("%d\n", probEvento(0.25));
return 0;
}