This repository has been archived by the owner on May 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ejercicio1.c
61 lines (53 loc) · 1.84 KB
/
ejercicio1.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/***********************************************/
/* Programa: ejercicio1 Fecha: */
/* Autores: */
/* */
/* Programa que genera numeros aleatorios */
/* entre dos numeros dados */
/* */
/* Entrada: Linea de comandos */
/* -limInf: limite inferior */
/* -limSup: limite superior */
/* -numN: cantidad de numeros */
/* Salida: 0: OK, -1: ERR */
/***********************************************/
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <time.h>
#include "permutaciones.h"
int main(int argc, char** argv)
{
int i;
unsigned int inf, sup, num, j;
srand(time(NULL));
if (argc != 7) {
fprintf(stderr, "Error en los parametros de entrada:\n\n");
fprintf(stderr, "%s -limInf <int> -limSup <int> -numN <int>\n", argv[0]);
fprintf(stderr, "Donde:\n");
fprintf(stderr, " -limInf : Limite inferior.\n");
fprintf(stderr, " -limSup : Limite superior.\n");
fprintf(stderr, " -numN : Cantidad de numeros a generar.\n");
exit(-1);
}
printf("Practica numero 1, apartado 1\n");
printf("Realizada por: Alberto Ayala y Mihai Blidaru\n");
printf("Grupo: 1271 \n");
/* comprueba la linea de comandos */
for(i = 1; i < argc; i++) {
if (strcmp(argv[i], "-limInf") == 0) {
inf = atoi(argv[++i]);
} else if (strcmp(argv[i], "-limSup") == 0) {
sup = atoi(argv[++i]);
} else if (strcmp(argv[i], "-numN") == 0) {
num = atoi(argv[++i]);
} else {
fprintf(stderr, "Parametro %s es incorrecto\n", argv[i]);
}
}
/* imprimimos los datos */
for(j = 0; j < num; j++) {
printf("%d\n", aleat_num(inf, sup));
}
return 0;
}