Advertisement
EvgeniiKraaaaaaaav

1.5(Simple)

Dec 5th, 2018
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 2.40 KB | None | 0 0
  1. //https://vk.com/evgenykravchenko0
  2.  
  3.                 ___                                        ___                   ___    
  4.                /  /\                  ___                 /  /\                 /  /\    
  5.               /  /:/_                /__/\               /  /:/_               /  /:/_  
  6.              /  /:/ /\               \  \:\             /  /:/ /\             /  /:/ /\  
  7.             /  /:/ /:/_               \  \:\           /  /:/_/::\           /  /:/ /:/_
  8.            /__/:/ /:/ /\          ___  \__\:\         /__/:/__\/\:\         /__/:/ /:/ /\
  9.            \  \:\/:/ /:/         /__/\ |  |:|         \  \:\ /~~/:/         \  \:\/:/ /:/
  10.             \  \::/ /:/          \  \:\|  |:|          \  \:\  /:/           \  \::/ /:/
  11.              \  \:\/:/            \  \:\__|:|           \  \:\/:/             \  \:\/:/  
  12.               \  \::/              \__\::::/             \  \::/               \  \::/  
  13.                \__\/                   ~~~~               \__\/                 \__\/    
  14.                             ___                                            
  15.                            /__/\                ___                 ___    
  16.                            \  \:\              /  /\               /  /\    
  17.                             \  \:\            /  /:/              /  /:/    
  18.                         _____\__\:\          /__/::\             /__/::\    
  19.                        /__/::::::::\         \__\/\:\__          \__\/\:\__
  20.                        \  \:\~~\~~\/            \  \:\/\            \  \:\/\
  21.                         \  \:\  ~~~              \__\::/             \__\::/
  22.                          \  \:\                  /__/:/              /__/:/
  23.                           \  \:\                 \__\/               \__\/  
  24.                            \__\/                                            
  25.  
  26. #include <stdio.h>
  27. #include <conio.h>
  28. //-— функция —-
  29. int Simple ( int N )
  30. {
  31.   for ( int i = 2; i*i <= N; i ++ )
  32.   {
  33.     if ( N % i == 0 )
  34.       return 0;
  35.   }
  36.   return 1;
  37. }
  38. int main()
  39. {
  40.   int i;
  41.   int N;
  42.   int count = 0;
  43.   printf("Введите значение N : ");
  44.   scanf("%d", &N);
  45.   for (i = 1;i <= N;i++)
  46.   {
  47.     if (Simple(i))
  48.     {
  49.       count += 1;
  50.       printf("%d \n", i);
  51.     }
  52.   }
  53.   printf("Всего %d простых чисел в последовательности от 1 до %d ", count, N);
  54. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement