Advertisement
vencinachev

PrimeNumbers

Apr 26th, 2021
708
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.85 KB | None | 0 0
  1. import java.util.Scanner;
  2.  
  3. public class Program {
  4.     static boolean isPrime(int num) {
  5.         if (num < 2) {
  6.             return false;
  7.         }
  8.         for (int i = 2; i * i <= num; i++) {
  9.             if (num % i == 0) {
  10.                 return false;
  11.             }
  12.         }
  13.         return true;
  14.     }
  15.    
  16.     public static void main(String[] args) {
  17.         Scanner scan = new Scanner(System.in);
  18.         int sumPrimes = 0;
  19.         int sumNonPrimes = 0;
  20.         while (true) {
  21.             String input = scan.nextLine();
  22.             if (input.equals("stop")) {
  23.                 break;
  24.             }
  25.             int number = Integer.parseInt(input);
  26.             if (number > 0) {
  27.                 if (isPrime(number)) {
  28.                     sumPrimes += number;
  29.                 } else {
  30.                     sumNonPrimes += number;
  31.                 }
  32.             } else {
  33.                 System.out.println("Number is negative");
  34.             }
  35.         }
  36.         System.out.println("Sum of all prime numbers is: " + sumPrimes);
  37.         System.out.println("Sum of all non prime numbers is: " + sumNonPrimes);
  38.     }
  39. }
  40.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement