-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpreenche_vetor.cpp
40 lines (37 loc) · 967 Bytes
/
preenche_vetor.cpp
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
37
38
39
40
#include<stdio.h>
#include<stdlib.h>
#include<time.h>
void preencheVetor(int *vet, int tamanho){
int j,i,var = 0;
for (i=0;i<tamanho;i++){
do{
vet[i] = rand() % 100 + 1;
for(j=0; j<i;j++){
if(vet[j]==vet[i]){
var=1;
break;
}
else var=0;
}
}while(var);
}
}
int main(){
srand(time(NULL));
int tamanho = rand() % 20 + 1;
int vetor[tamanho];
int denovo;
do{
system("cls");
printf(" Gerado numeros no vetor de %d elementos.\n",tamanho);
preencheVetor(vetor,tamanho);
printf("\n\n Vetor:\n");
for(int i=0;i<tamanho;i++){
printf(" %d\n",vetor[i]);
}
printf("\n\n Digite 1 para gerar outro vetor\n Digite 0 para sair\n Escolha: ");
scanf("%d",&denovo);
}while(denovo);
system("pause");
return 0;
}