Posts by Filipe Rodrigues • 101 points
3 posts
-
0
votes2
answers69
viewsA: Sum of values in View
In this part of the code you are iterating, but you are not passing the index for the object: for (int i = 0; i < cont; i++){ Total += receita.Valor; } You can do: for (int i = 0; i < cont;…
-
0
votes1
answer61
viewsQ: Build with Maven does not find lib in Artifacts
I’m building a pipeline in Azure Devops to build java projects with Maven. When trying to download libs in Artifacts the following error appears Caused by:…
-
10
votes1
answer114
viewsQ: Why is 16 equal to 020 in Javascript?
I was comparing CPF’s when I got the following expression: if(16 == 020){ console.log(true) }else{ console.log(false) } The result of this expression is true, I’d like to understand why.…