Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
java-e003-generala
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Cristhian Ortellado
java-e003-generala
Commits
23c3110e
Commit
23c3110e
authored
Oct 05, 2020
by
Cristhian Ortellado
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Se termino el trabajo
parents
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
107 additions
and
0 deletions
+107
-0
Generala.java
+85
-0
Probabilidades.txt
+18
-0
README.MD
+4
-0
No files found.
Generala.java
0 → 100644
View file @
23c3110e
import
java.util.ArrayList
;
import
java.util.List
;
import
java.util.Scanner
;
import
java.io.File
;
import
java.util.*
;
public
class
Generala
{
// ESTA ES LA FUNCIÓN QUE HAY QUE IMPLEMENTAR
// TAMBIÉN PUEDEN AGREGAR OTRAS FUNCIONES y/o CLASES
// QUE NECESITEN PARA RESOLVER EL EJERCICIO DE LA
// MANERA MÁS ORDENADA POSIBLE
String
jugada
(
String
dados
)
{
//verificamos que haya introducido en numero correcto de caracteres
if
(
dados
.
length
()!=
5
)
return
"INVALIDO"
;
//generamos un vector char y lo ordenamos
char
vecAux
[]=
dados
.
toCharArray
();
Arrays
.
sort
(
vecAux
);
//verificamos que sea un numero valido
for
(
int
i
=
0
;
i
<
vecAux
.
length
;
i
++)
if
(
vecAux
[
i
]!=
'6'
&&
vecAux
[
i
]!=
'5'
&&
vecAux
[
i
]!=
'4'
&&
vecAux
[
i
]!=
'3'
&&
vecAux
[
i
]!=
'2'
&&
vecAux
[
i
]!=
'1'
)
return
"INVALIDO"
;
//convertimos a un vector entero
int
[]
vec
=
new
int
[
5
];
for
(
int
i
=
0
;
i
<
vecAux
.
length
;
i
++)
{
vec
[
i
]=
(
int
)
vecAux
[
i
];
}
//si son iguales entonces es generala
if
(
vec
[
0
]==
vec
[
1
]
&&
vec
[
1
]==
vec
[
2
]
&&
vec
[
2
]==
vec
[
3
]
&&
vec
[
3
]==
vec
[
4
])
return
"GENERALA"
;
if
(
vec
[
0
]==
vec
[
1
]
&&
vec
[
1
]==
vec
[
2
]
&&
vec
[
2
]==
vec
[
3
]
||
vec
[
1
]==
vec
[
2
]
&&
vec
[
2
]==
vec
[
3
]
&&
vec
[
3
]==
vec
[
4
]
)
return
"POKER"
;
if
(
vec
[
0
]==
vec
[
1
]
&&
vec
[
1
]==
vec
[
2
]
&&
vec
[
3
]==
vec
[
4
])
return
"FULL"
;
if
(
vec
[
0
]==
vec
[
1
]
&&
vec
[
2
]==
vec
[
3
]
&&
vec
[
3
]==
vec
[
4
])
return
"FULL"
;
if
(
vec
[
0
]==(
vec
[
1
]-
1
)
&&
vec
[
1
]==(
vec
[
2
]-
1
)
&&
vec
[
2
]==(
vec
[
3
]-
1
)
&&
vec
[
3
]==(
vec
[
4
]-
1
))
return
"ESCALERA"
;
//si no cayo en ninguno de los casos entonces no es nada
return
"NADA"
;
}
// Ustedes pueden ignorar esto
String
[]
jugadas
(
String
[]
losdados
){
String
[]
ret
=
new
String
[
losdados
.
length
];
int
i
=
0
;
for
(
String
dados
:
losdados
)
{
ret
[
i
]
=
this
.
jugada
(
dados
);
i
++;
}
return
ret
;
}
// Ustedes pueden ignorar esto
static
String
[]
processBatch
(
String
fileName
)
throws
Exception
{
Scanner
sc
=
new
Scanner
(
new
File
(
fileName
));
List
<
String
>
lines
=
new
ArrayList
<
String
>();
while
(
sc
.
hasNextLine
())
{
lines
.
add
(
sc
.
nextLine
());
}
return
lines
.
toArray
(
new
String
[
0
]);
}
public
static
void
main
(
String
[]
args
)
throws
Exception
{
Generala
g
=
new
Generala
();
/*uSTEDES PUEDEN IGNORAR ESTO
if (args.length > 0) {
String[] jugadas = processBatch(args[0]);
String resultados[] = g.jugadas(jugadas);
for(String res : resultados) {
System.out.println(res);
}
return;
}
*/
// ESTO SI SE EJECUTA PARA USTEDES
System
.
out
.
println
(
g
.
jugada
(
"13546"
));
}
}
\ No newline at end of file
Probabilidades.txt
0 → 100644
View file @
23c3110e
1)Cuál es la probabilidad de sacar generala en un tiro
Es de 1/1296
2)Cuál es la probabilidad de sacar poker en un tiro
Es de 0,0167
3)Cuál es la probabilidad de sacarfull en un tiro
Es de 0,0386
4)Cuál es la probabilidad de sacar escalera en un tiro
Es de 0,04629
BONUS:
*Cuál es la probabilidad de sacar generala en dos tiros
0,001543
*Cuál es la probabilidad de sacar generala en tres tiros
0,00231
\ No newline at end of file
README.MD
0 → 100644
View file @
23c3110e
Instrucciones
1)Compilar con javac Generala.java
2)Ejecutar con java Generala.java
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment