Posts by kcpo • 307 points
4 posts
-
0
votes1
answer47
viewsA: My Labels are abbreviated when running program
Hello, this problem exists because you have not set a size for your label, try to give a setSize with the appropriate values.
-
11
votes15
answers4487
viewsA: Determine if all digits are equal
I do not know if you only wanted if the numbers were equal, so I dared and also made a palindrome :D Jeez excuse, the Palindrome is following, the palindrome is a word (in the context I used number)…
-
1
votes1
answer727
viewsA: List in Textfield or an editable Combobox when user type - Javafx
Hello I have something that can help you. You need to tell what Type the box will handle, it can be any object, String, Double, Person. Only the comparison will be made by the toString() method of…
-
4
votes1
answer1342
viewsA: How to make a program in Java search in a certain information file and return a string
import java.io.FileNotFoundException; import java.io.FileReader; import java.util.Scanner; public class Teste { public static void main(String[] args) throws…