Skip to main content

un programme en C permettant d'effectuer une permutation circulaire de trois nombres entiers.

Avatar
By Mohammed Raji · Published:
Last updated: · No comments
Ecrire un programme en C permettant d'effectuer une permutation circulaire de trois nombres entiers A, B, et C. Exemple:   A=5, B=10 et C=20.

Solution:

#include <stdio.h>
int main ()
{
int a,b,c,d;
a=5;
b=10;
c=20;
printf ("les nombres sont: %i %i %i\n",a,b,c);
d=a;
a=b;
b=c;
c=d;
printf ("la permutation est %i %i %i\n",a,b,c);
system ("PAUSE");
return 0;
}

Comments 0

Post a Comment

Cancel