Skip to content

Commit

Permalink
encontro 0 - edu e hugo
Browse files Browse the repository at this point in the history
  • Loading branch information
EduRenesto committed Jun 4, 2018
1 parent 2905e46 commit 6b9fe8e
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.class
31 changes: 31 additions & 0 deletions encontro0/edu_e_hugo.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
object Jogo1 {
def main(args: Array[String]) : Unit = {
println("Digite seu nome, disgraça")
var user = scala.io.StdIn.readLine()
ptintln("Escolha uma das 3 dificuldades")
var dificuldade = scala.io.StdIn.readLine()
val rnd = scala.util.Random
val log2 = (x :Int) => (scala.Math.log(x))/(scala.Math.log(2))
val escolha = rnd.nextInt(32000)
var aindaerrou = true
var tentativas = 15

while(aindaerrou && (tentativas > 0)){

println(s"Voce tem $tentativas tentativas, $user . Escolha um numero: ")
val numeroerrado = scala.io.StdIn.readLine().toInt
tentativas -= 1
if(numeroerrado > escolha){
println("Muito Alto")
}else if(numeroerrado < escolha){
println("Muito baixo")
}else{
println(s"Voce não fez mais que sua obrigação, $user ")
aindaerrou = false
return
}

}
println(s"Você não tem vergonha, $user ?")
}
}

0 comments on commit 6b9fe8e

Please sign in to comment.