Posts by Márcio Sá • 21 points
2 posts
-
0
votes3
answers459
viewsA: Store values in matrices
I realized that the assignment is from loop, this allows the variable SUM to have the balance of the previous sum. To solve the problem, place the assignment of the value zero within the loop, as…
-
2
votes6
answers34111
viewsA: What is and what is an abstract class for?
Abstract classes are classes that define the most elementary structure of a class that you can create. They cannot be instantiated, but serve as a basis for creating others from it. The classes that…