-
Notifications
You must be signed in to change notification settings - Fork 0
/
sorteo.go
127 lines (110 loc) · 3.78 KB
/
sorteo.go
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/********************************************************************************/
/* */
/* sorteo.go */
/* */
/* +++ Descripcion: */
/* */
/* */
/* @ Autor : Rodrigo G. Higuera M. <[email protected]> */
/* @ Fecha : 2020.07.23 13:38:57 */
/* */
/* C0pyl3ft - 2020 | Open Source License */
/********************************************************************************/
/********************************************************************************/
/* Ejecucion : */
/* */
/* */
/********************************************************************************/
package main
/**********************************/
/******** Import Packages *********/
/**********************************/
import (
"fmt"
"math/rand"
"os"
"strconv"
"time"
)
/*****************************************************/
/******** Definicion de Estructuras - Inicio *********/
/*****************************************************/
/*****************************************************/
/******** Definicion de Estructuras - Fin ************/
/*****************************************************/
/*****************************************************/
/***** Definicion de Constantes Globales - Inicio ****/
/*****************************************************/
const VERSION = "20200723.133857.0001"
/*****************************************************/
/***** Definicion de Constantes Globales - Fin *******/
/*****************************************************/
/*****************************************************/
/****** Definicion de Variables Globales - Inicio ****/
/*****************************************************/
/*****************************************************/
/****** Definicion de Variables Globales - Fin ******/
/*****************************************************/
/*
*
* @author Rodrigo G. Higuera M. <[email protected]>
* @date 2020.07.23 13:38:57
* @version 20200723.133857.0001
* @Company © Development 2020
*
*/
func main() {
rand.Seed(time.Now().UnixNano())
p := len(os.Args)
fmt.Println(p)
premio := make([]int, 0)
index := 0
if p == 3 {
min, err := strconv.Atoi(os.Args[1])
if err != nil {
panic(err)
}
max, err := strconv.Atoi(os.Args[2])
if err != nil {
panic(err)
}
fmt.Println("<Min> ==> ", min)
fmt.Println("<Max> ==> ", max)
var n int
for {
if index == 3 {
break
}
n = rand.Intn(max-min+1) + min
f := buscar(premio, n)
if f == false {
premio = append(premio, n)
index++
}
}
fmt.Println(premio)
ShowSlice(premio)
} else {
fmt.Println("Error: Debe i")
panic("Error debe ingresar los parametros min y max <numericos>")
}
}
func buscar(s []int, v int) bool {
for _, item := range s {
if item == v {
return true
}
}
return false
}
func ShowSlice(s []int) {
for i, item := range s {
if i == 2 {
time.Sleep(3 * time.Second)
fmt.Println(">>> GANADOR(A) <<< ===> ", item)
} else {
time.Sleep(2 * time.Second)
fmt.Println(">>> AL AGUA <<< ===> ", item)
}
}
}