Posts by Lucas Nascimento Távora • 51 points
4 posts
-
-2
votes1
answer49
viewsQ: Print values from 1 to N
I want to start testing a code and for that I wanted it to start printing values from 1 to N. example: input: 7 output: 1,2,3,4,5,6,7
javaasked Lucas Nascimento Távora 51 -
0
votes1
answer58
viewsQ: Build error
Guys, I’m making two mistakes and I don’t know how to fix it. Follow the code below: import java.io.*; import java.util.*; public class Pilha{ int elementos[]; int topo; public Pilha(){ elementos =…
javaasked Lucas Nascimento Távora 51 -
2
votes3
answers316
viewsQ: Make image appear/disappear by clicking
I would like the user to click on the button of the "Size" to appear an image of a cake together with the price I already got. My code is like this: $("#service").change(function() { var value =…
-
2
votes2
answers63
viewsQ: Create a price change button
How do I create a button, that when clicking "pp" appears the value "r$70,00" and "p" appears "r$100,00", "M" "r$150,00" and "G" "r$180,00" I want to use html and js, Look how you do now, <select…