Posts by nhtoshiaki • 86 points
5 posts
-
1
votes2
answers124
viewsA: When making the class diagram is it necessary to add all methods and attributes?
As far as I know, there’s no general rule for all cases. This will depend a lot on who will need your diagrams, because UML is a notation used in communication between developers. Developers both…
-
0
votes1
answer166
viewsA: By selecting Checkbox disappear line
Within the function Sobremim you’re using jQuery right? If yes, then the $ before the parentheses and, as far as I know, jQuery has not the method display. An alternative is to use the methods hide…
-
1
votes1
answer1217
viewsA: Function to invert vector c
Your algorithm is correct. It’s only printing half the vector, because the for within the function inverte only goes through the middle. You can print after this loop or put in the main function…
-
0
votes2
answers201
viewsA: Matrix in python
Failed to update variable valor inside the loop: linhas = 4 entrada = input() valor = entrada.split() matriz = [] while (entrada != ''): for i in range(linhas): linha = [] for j in…
-
2
votes3
answers316
viewsA: Make image appear/disappear by clicking
You can add a tag img html with a certain id: <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script> <select id="service" style="margin: 0 5% 0…