Posts by Vinicius Senna • 61 points
3 posts
-
0
votes1
answer118
viewsA: Language Problem C, Program does not respond
Fabio, the error you are asking about occurs due to what I believe is a typo, in the second loop of your Selection Sort. To correct, just leave as follows: for(j = (i+1); j < tam; j++) PS: the…
canswered Vinicius Senna 61 -
4
votes2
answers1901
viewsA: Event click Jquery in selector . class
If you have problems related to elements that were not originally in the DOM, you can use the method .on() jQuery. Example: $( ".numero" ).on( "click", function() { //codigo }); Until a while ago…
-
2
votes3
answers150
viewsA: Crash after reading value with scanf
Another tip: change the type of the new variable to float. This way you will have a more precise answer in your program output. More info here. The final code would look like this: #include…
canswered Vinicius Senna 61