Separa números introducidos por el teclado, separa los múltiplos de tres en un ArrayList

package arraylist; import java.util.*; /** * @author GALIA * @version 24 de Diciembre 2014 Clase que separa en un Array List los numeros * introducidos por el teclado que sean múltiplos de tres */ public class ArrayMultiplosDe3 { private static Scanner sc; /** * Void. */ public static void arrayMult3() { int cantidad; sc = new Scanner(System.in); System.out.println("\tNumeros que componen el array: "); cantidad = sc.nextInt(); int[] arrayMultiplos = new int[cantidad]; System.out.println("\tNumeros: "); for (int i = 0; i < arrayMultiplos.length; i++) { arrayMultiplos[i] = sc.nextInt(); } for (int i = 0; i < arrayMultiplos.length; i++) { if (arrayMultiplos[i] % 3 == 0) { ArrayList<Integer> arrayMultiplos1 = new ArrayList<Integer>(); arrayMultiplos1.add(arrayMultiplos[i]); for (int j : arrayMultiplos1) { System.out.print("\tMúltiplo:" + j + " "); System.out.println(); } } } System.out.println("\n\tElementos del array original \n"); Arrays.sort(arrayMultiplos); System.out.println(Arrays.toString(arrayMultiplos)); } }

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.