Laboratoire 11
Open Source Your Knowledge, Become a Contributor
Technology knowledge has to be shared and made accessible for free. Join the movement.
Exercice 3
Calcul d'un inverse modulaire d'un nombre
Ressource sur l'inverse modulaire
NOTE : il ne faut pas modifier les lignes de saisie et d'affichage.
Trouver l'inverse modulaire
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <stdio.h>
#include <stdlib.h>
int main() {
int a, n,inv;
scanf("%d",&a);
scanf("%d",&n);
//Ajouter votre code ici
/* si inverse possible
printf("%d\n",inv);
si inverse pas possible
printf("pas d'inverse possible\n");
*/
return 0;
}
Open Source Your Knowledge: become a Contributor and help others learn. Create New Content