Posts by Gatenho • 23 points
3 posts
-
0
votes1
answer210
viewsQ: How to show all values of three matrices in a single message without using indexes
package AlgoritmosII; import javax.swing.*; public class Trabalho1 { public static void main(String[] args){ String[][] A = new String[3][3]; int[][] B = new int[3][3]; double[][] C = new…
-
0
votes2
answers171
viewsQ: How to show values of an Array in a single message?
package Algoritmos; import javax.swing.*; public class testinho { public static void main(String[] args) { int[][] numero_conta = new int[3][3]; numero_conta[0][0] = 111; numero_conta[0][1] = 222;…
-
-3
votes1
answer80
viewsQ: Doubt with Bubble Sort
package AlgoritmosII; import javax.swing.*; public class Exercicio //BubbleSort { public static void main(String args[]) { int troca, fim, i, aux, k; int tamanho =…