Posts by Vinicius1402 • 29 points
6 posts
-
0
votes1
answer191
viewsQ: Exercise URI 1012 - Wrong Answer 20%
I did the exercise, almost all outputs are coming out as URI output is asking, but the first requirement is not as requested in the program. I used setprecision, but I am in doubt why the first…
c++asked Vinicius1402 29 -
1
votes0
answers74
viewsQ: Include two while loops in a jQuery structure for the game Jokenpô
First screen - Insertion of user name Second screen - User clicks on the image corresponding to the option and then the comparison is made I want to put two loops while. The first while loop is in…
-
1
votes1
answer105
viewsQ: Vanish a component using jQuery when loading the page. And then appear it after a certain event in a while loop
I created a game of jokenpo and I want to put a while to ask for a value for the user. I need that when the document be charged the texbox scram. $(document).ready(function(){ var choice = null; var…
-
0
votes1
answer23
viewsQ: Load a page after filling a textfield using jQuery
I’m playing a Jokenpo game, and I need a username to put on the Score. In this case I created a home page with a textfield for the user to enter his name. Just after you have entered your name, you…
jqueryasked Vinicius1402 29 -
0
votes2
answers254
viewsQ: Assign a variable the value of a click on an image, to make a comparison
I had made this game using textbox, and everything worked ok, but I decided to make a modification and instead of typing put respective images to the jokenpô and the image that the user click will…
-
0
votes0
answers95
viewsQ: How to show the result of a conditional Java Script structure in a text box in html using jquery?
var textoUser = $("#txtFieldUser"); var textoGanhador = $("txtFieldGanhador"); var computerChoice = Math.random(); if (computerChoice < 0.34) { computerChoice =…