Posts by Wandersom Moura • 1 point
2 posts
-
0
votes3
answers32
viewsA: Copy radio value to textarea
Hello, when it click on the place you want you call this function, passing as parameter what you want to copy. copyInputMessage(toCopy) { var textarea = document.createElement("textarea");…
-
0
votes2
answers266
viewsA: Receive two numbers, add the pairs and multiply the odd
The idea is to make a function that returns the values, very generic. def somaParMultImpar(numero1,numero2): impar = 1 par = 0 while(numero1<=numero2): if(numero1%2 == 0): par+=numero1 else:…