Posts by Alana Éulem • 11 points
1 post
-
1
votes0
answers37
viewsQ: How do I put this question to work in the Lua language?
function potencia (x,y) if y==0 then return 1 else return (x*potencia(x,y-1)) end algoritmoPerf = io.write("probabilidade de que cada algoritmo apresente perfeito funcionamento: ") naoperf = 1 -…
luaasked Alana Éulem 11