Estás en: Ayuda con Juego Pex4fun
Para dar las gracias debes entrar o registrarte en el foro
Me llamó mucho la atención este juego para aprender a programar, pero alguien me dice cómo se juega? Porque yo no lo entiendo, por ejemplo
Can you discover the secret program?
Imports System
Public Class Program
'Can you fill the puzzle method to match the secret arithmetic operation?
Public Shared Function Puzzle(Byval x As Int32) As Int32
Return 0
End Function
End Class
elpetakas escribió:Me llamó mucho la atención este juego para aprender a programar, pero alguien me dice cómo se juega? Porque yo no lo entiendo, por ejemplo
Can you discover the secret program?
- Código: Seleccionar todo
Imports System
Public Class Program
'Can you fill the puzzle method to match the secret arithmetic operation?
Public Shared Function Puzzle(Byval x As Int32) As Int32
Return 0
End Function
End Class
La verdad no entiendo nada, sólo veo una función llamada puzzle que no sé que debería resolver, ¿Una operación aritmética secreta? ¿Pero esto qué es? ¿Alguien me ayuda? Me gustaría comenzar a jugar.
Al final la solución era
Imports System
Public Class Program
'Can you fill the puzzle method to match the secret arithmetic operation?
Public Shared Function Puzzle(Byval x As Int32) As Int32
Return -x
End Function
End Class