andersonalmada2

Untitled

Sep 9th, 2022
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.54 KB | None | 0 0
  1. package teste;
  2.  
  3. import java.util.Scanner;
  4.  
  5. public class Main {
  6.  
  7.     public static void main(String[] args) {
  8.         int[] vetor = new int[3];
  9.        
  10.         Scanner sc = new Scanner(System.in);
  11.        
  12.         for(int i = 0; i < vetor.length; i++) {
  13.             vetor[i] = Integer.parseInt(sc.nextLine());
  14.         }
  15.        
  16.         for(int j = 0; j < vetor.length; j++) {
  17.             int count = 0;
  18.            
  19.             for(int i = 1; i <= vetor[j]; i++) {
  20.                 if(vetor[j] % i == 0) {
  21.                     count++;
  22.                 }
  23.             }
  24.            
  25.             if(count == 2) {
  26.                 System.out.println(vetor[j] + " - " + j);
  27.             }
  28.         }      
  29.     }
  30. }
  31.  
Add Comment
Please, Sign In to add comment