Advertisement
desito07

Sum of Prime and Non-Prime Numbers

Sep 21st, 2023
1,027
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.25 KB | None | 0 0
  1. namespace _12._Sum_of_Prime_and_Non_Prime_Numbers
  2. {
  3.     internal class Program
  4.     {
  5.         static void Main(string[] args)
  6.         {
  7.             string command = (Console.ReadLine());
  8.             int sumPrimeNum = 0;
  9.             int sumNonprimeNum = 0;
  10.  
  11.             while (command != "stop")
  12.             {
  13.                 int currentNum = int.Parse(command);
  14.                 if (currentNum < 0)
  15.                 {
  16.                     Console.WriteLine("Number is negative");
  17.                     continue;
  18.                 }
  19.  
  20.                 int divisors = 0;
  21.                 for (int i = 1; i <= currentNum; i++)
  22.                 {
  23.                     if (currentNum % i == 0)
  24.                     {
  25.                         divisors++;
  26.                     }
  27.                 }
  28.                 if (divisors == 2)
  29.                 {
  30.                     sumPrimeNum += currentNum;
  31.                 }
  32.                 else
  33.                 {
  34.                     sumNonprimeNum += currentNum;
  35.                 }
  36.                 command = (Console.ReadLine());
  37.             }
  38.             Console.WriteLine($"Sum of all prime numbers is: + {sumPrimeNum}");
  39.             Console.WriteLine($"Sum of all non prime numbers is: {sumNonprimeNum}");
  40.         }
  41.     }
  42. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement