source: trunk/Softwares/Basic_test.or32/src/c/func_premier.c @ 2

Last change on this file since 2 was 2, checked in by kane, 17 years ago

Import Morpheo

File size: 575 bytes
Line 
1#include "func_math.h"
2#include "func_premier.h"
3
4//-----[ Premier ]---------------------------------------------------------
5
6unsigned int premier(unsigned int x)
7{
8  unsigned int it;
9
10  if (x <= 0)
11    return 0;
12 
13  if (x <= 2)
14    return 1;
15
16  for(it=2; it <= (x/2); it++)
17    if (modulo(x,it) == 0)
18      return 0;
19 
20  return 1;
21}
22
23unsigned int n_premier(unsigned int nieme_premier)
24{
25  unsigned int nb_find  = 0;
26  unsigned int res      = 1;
27  while (nb_find < nieme_premier)
28    {
29      res ++;
30      if (premier(res) == 1)
31        nb_find ++;
32    }
33  return res;
34}
35
Note: See TracBrowser for help on using the repository browser.