Posts by Davi Fonseca • 11 points
2 posts
-
0
votes2
answers227
viewsA: Return all birthdays of the month chosen by the user
//Method that gets a month and returns all birthday friends public static String aniversariarNoMes(int mes) { String saida = ""; //Faz a validação do mes escolhido if (mes < 01 || mes > 12) {…
javaanswered Davi Fonseca 11 -
1
votes2
answers227
viewsQ: Return all birthdays of the month chosen by the user
I’m developing a system of an agenda of friends. Some classes have been created: Endereço, Amigo, GerenciarAmigo. When I put the system to run, it doesn’t show me the String of the birthday names of…
javaasked Davi Fonseca 11