Posts by rafae_domingues • 35 points
3 posts
-
1
votes1
answer63
viewsQ: Return only an attribute of an object?
I would like to know how to get only one object attribute ... const person = [ { name: 'Jane', age: 55 }, { name: 'Rafael', age: 23 }, { name: 'Carolina', age: 19 }, { name: 'Bob', age: 47 }, {…
-
0
votes1
answer93
viewsQ: Repetition loop in Java
Hello I am new in Java language, I would like to know how I could implement a repetition loop every time an Inputmismatchexception type exception was capture, in this case return to the beginning of…
javaasked rafae_domingues 35 -
2
votes1
answer194
viewsQ: How many times has the highest number been read?
I have the following problem: the user enters with the amount of numbers to be read, later I want the largest among this quantity 'X' of numbers to be displayed and also how many times this higher…