-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patha10.java
41 lines (33 loc) · 994 Bytes
/
a10.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
import java.util.Scanner;
public class a10 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int contadorPrimo = 0;
for (int i = 0; i < 10; i++) {
// Exibe a posição do número (1º, 2º, etc.)
System.out.printf("Digite o %dº número inteiro: ", i + 1);
int num = sc.nextInt();
if (isPrime(num)) {
contadorPrimo++;
}
}
System.out.println("Quantidade de números primos: " + contadorPrimo);
}
public static boolean isPrime(int num) {
if (num <= 1) {
return false;
}
if (num == 2) {
return true;
}
if (num % 2 == 0) {
return false;
}
for (int i = 3; i <= Math.sqrt(num); i += 2) {
if (num % i == 0) {
return false;
}
}
return true;
}
}