Posts by Fernando Loiola • 34 points
2 posts
-
-1
votes2
answers196
viewsA: Code to generate random number sequence does not work
Your program will only show 5 numbers, because you had the loop repeat 5 times. It should pass for (i = 0; i <= quant_random; i++); Here the amount of times the loop will repeat is defined in…
-
2
votes1
answer66
viewsA: I can’t get the variables I created recognized when using Def
Its biggest problem is the functions. Take a look at some content on the internet about python functions. The point is that you need to have the function return something in order to use the value…
pythonanswered Fernando Loiola 34