Posts by Caio Filipe • 67 points
5 posts
-
0
votes2
answers21
viewsA: How to enable manual typing by selecting the other option in Form-Select
I was able to solve it this way: I added the <input type="text" class="form-control"> inside a div FATHER and, through a file stylesheet.css removed, teporarially, it. #pai div{ display: none;…
-
0
votes2
answers21
viewsQ: How to enable manual typing by selecting the other option in Form-Select
I am developing a registration form and added a Form-Select field to know what the Position of employees (Secretary / Advisor) company. However, when selecting the option others would like to enable…
-
1
votes2
answers107
viewsQ: How to save the Insert Radio Button with Bootstrap to the Mysql database
I am developing a registration form but I had to include a field (Radio Button) in my project. However, I am unable to save the Radio Button Insert to my Mysql database. The code below is in…
-
-2
votes1
answer571
viewsQ: Prime Numbers - Function / array
Good night, could someone help me understand how the variable works quantityDeducer in the code below? I know she’s storing the prime numbers, but I was wondering if the numbers are stored one at a…
javascriptasked Caio Filipe 67 -
4
votes2
answers88
viewsQ: When compiling the code, both numero1 and numero2 display the same value even having an increment
public class IncrementoDecremento{ public static void main(String[] args) { Integer numero1 = 10; Integer numero2 = ++numero1; System.out.println("numero: " + numero1 + ", numero2: " + numero2); } }…