-
Notifications
You must be signed in to change notification settings - Fork 0
/
NumeriPrimi.java
46 lines (32 loc) · 1006 Bytes
/
NumeriPrimi.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
package Esercizi_Esami;
public class NumeriPrimi {
public static void main(String[] args) {
int[] array = {1, 4, 2, 6, 3, 8, 5, 12, 11, 14};
tuttiPrimi(array);
}
public static boolean primo(int numero) {
if (numero < 2) {
return false;
} else if (numero == 2) {
return true;
}
for (int i = 2; i < numero; i++) {
if (numero % i == 0)
return false;
}
return true;
}
//Controlla se tutte le posizioni di indice pari contengono numeri primi
public static void tuttiPrimi(int[] a) {
for (int i = 0; i < a.length; i++) {
if (i % 2 == 0) {
System.out.println("Il numero " + a[i] + " " + primo(a[i]));
}
}
}
public static void stampa(int[] a) {
for (int i = 0; i < a.length; i++) {
System.out.print(a[i] + " ");
}
}
}