Los números primos son aquellos que solo pueden ser divisibles por 1 y por sí mismos, no pueden ser divisibles por ningún otro número. La tarea aquí es encontrar los números primos y almacenarlos en forma de array.
Example: Prime numbers are: 2, 3, 5, 7 Output: 2 3 5 7 Prime numbers : 2, 3, 5, 7, 9, 11, 13, 17, 19 Output: 2 3 5 7 9 11 13 17 19
Acercarse:
- Primero, se debe crear la clase y dentro de la clase se crea un método para verificar el número primo.
- Este método tomará el número como entrada y luego verificará si es primo o no. Si es primo, devolverá verdadero y, si no, devolverá falso.
- Ahora, se creará el método principal, dentro del método principal se crea el objeto de la clase Matrix para que se pueda acceder al método isPrime() desde el principal.
- El número de filas y el número de columnas se tomarán del usuario y luego, al usar esto, se creará otra array que tiene el tamaño de filas * columnas.
- Los números primos se almacenarán en esta array.
- Ahora, al iterar a través de la array result[] , los números primos se almacenarán en la array Matrix[] . Después de eso, el resultado se imprimirá.
Java
// Java Program to Create a Matrix and Fill // it with Prime Numbers import java.util.Scanner; public class MatrixWithPrimeNumbers { // Function to check a number is prime or not boolean isPrime(int num) { int counter = 0; for (int i = 1; i <= num; i++) { if (num % i == 0) counter = counter + 1; } if (counter == 2) return true; else return false; } public static void main(String args[]) { // creating object of Matrix With Prime Numbers // class MatrixWithPrimeNumbers mwp = new MatrixWithPrimeNumbers(); // Enter the number of rows and column. int row = 4; int col = 4; // 2D array for storing prime numbers int Matrix[][] = new int[row][col]; // size of resultant matrix int res = row * col; // 1D array for storing prime numbers int Result[] = new int[res]; int i = 0, j; int k = 1; // Calling the method to check prime and // then result will be stored into the array while (i < res) { if (mwp.isPrime(k) == true) { Result[i] = k; i++; } k++; } // the result is now stored into the form // of matrix (in 2D array) int x = 0; for (i = 0; i < row; i++) { for (j = 0; j < col; j++) { Matrix[i][j] = Result[x]; x++; } } // printing the result in 2D Array. System.out.println("The Resultant Matrix is : "); for (i = 0; i < row; i++) { for (j = 0; j < col; j++) { System.out.print(Matrix[i][j] + " "); } System.out.println(); } } }
Producción
The Resultant Matrix is : 2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53
Publicación traducida automáticamente
Artículo escrito por snigdha_yambadwar y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA