Posts by Washington Klébio • 34 points
2 posts
-
-1
votes1
answer105
viewsA: I cannot perform the indicated operations
for(int i=0; i<20; i++){ switch(oper[i]){ case "+": result[i] = v1[i] + v2[i]; break; case "-": result[i] = v1[i] - v2[i]; break; case "*": result[i]…
javaanswered Washington Klébio 34 -
1
votes1
answer62
viewsQ: I can’t generate that second vector
Write a program that loads a vector with 10 integers and sort it in ascending order using the Bubble Sort method. The program must generate a second vector without repeated numbers. package…