Advertisement
Sephinroth

prac 4 ex 7

Oct 28th, 2019
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.01 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5.  
  6. namespace _4._4
  7. {
  8.     class Program
  9.     {
  10.         static int QuanOfDel(int a)
  11.         {
  12.             int q = 0;
  13.             for (int i = 1; i <= Math.Sqrt(a); ++i)
  14.                 if (a % i == 0)
  15.                     if (i * i == a) q++;
  16.                     else
  17.                         q += 2;
  18.             return q;
  19.  
  20.         }
  21.  
  22.         static void Main()
  23.         {
  24.             Console.Write("Введите a: ");
  25.             int a = int.Parse(Console.ReadLine());
  26.             Console.Write("Введите b: ");
  27.             int b = int.Parse(Console.ReadLine());
  28.             Console.Write("Введите K: ");
  29.             int k = int.Parse(Console.ReadLine());
  30.             for (int i = a; i <= b; ++i)
  31.             {
  32.                 if (QuanOfDel(i) == k)
  33.                 {
  34.                     Console.Write("{0} ", i);
  35.                 }
  36.             }
  37.             Console.ReadKey();
  38.  
  39.         }
  40.     }
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement