Advertisement
Spocoman

Division Without Remainder

Nov 25th, 2021 (edited)
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.88 KB | None | 0 0
  1. using System;
  2.  
  3. namespace DivisionWithoutRemainder
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             int n = int.Parse(Console.ReadLine());
  10.             double p1 = 0;
  11.             double p2 = 0;
  12.             double p3 = 0;
  13.            
  14.             for (int i = 1; i <= n; i++)
  15.             {
  16.                 int num = int.Parse(Console.ReadLine());
  17.                 if (num % 2 == 0)
  18.                 {
  19.                     p1++;
  20.                 }
  21.                 if (num % 3 == 0)
  22.                 {
  23.                     p2++;
  24.                 }
  25.                 if (num % 4 == 0)
  26.                 {
  27.                     p3++;
  28.                 }
  29.             }
  30.  
  31.             Console.WriteLine($"{p1 / n * 100:F2}%");
  32.             Console.WriteLine($"{p2 / n * 100:F2}%");
  33.             Console.WriteLine($"{p3 / n * 100:F2}%");
  34.         }
  35.     }
  36. }
  37.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement