Posts by Júlio César Baltazar • 89 points
3 posts
-
0
votes2
answers293
viewsA: I am Inciante , and I have a problem with a question, on the part of instantiating the objects
It would be something like that: public class Cliente { Integer codigo; String nome; //Quando se tem um contrutor sem ser vazio, precisa criar um vazio, para poder diferenciar public Cliente() { }…
javaanswered Júlio César Baltazar 89 -
1
votes2
answers955
viewsA: How to print the day numbers of each month using Array, String and byte?
There are some errors in this code. The first array is not declared as an array and the elements are not in quotes. To show each respective month with the day, do not need to make a nested. Ex:…
-
3
votes4
answers2097
viewsA: Print arraylist information on the screen
In the main class, the list you started is with String, it would not be a Dog list? public static void main(String[] args) { List<Cachorro> dog = new ArrayList<>(); Cachorro cc = new…