BUT2/DEV/DEV1.1/TP_Tableau/q4.c
2023-10-23 13:23:36 +02:00

25 lines
551 B
C

#include <stdio.h>
#include <stdlib.h>
#include <time.h>
int main(void) {
int position;
int tableau[10];
int tableauInv[10];
srand(time(NULL));
for (position=0;position<10;position++){
tableau[position]=((rand()%101)-50);
printf("%d",position);
printf(" --> ");
printf("%d\n",tableau[position]);
}
printf("\n");
for (position=0;position<10;position++){
tableauInv[position]=tableau[9-position];
printf("%d",position);
printf(" --> ");
printf("%d\n",tableauInv[position]);
}
return EXIT_SUCCESS;
}