30 lines
522 B
C
30 lines
522 B
C
|
#include <stdio.h>
|
||
|
#include <stdlib.h>
|
||
|
#include <time.h>
|
||
|
#include <math.h>
|
||
|
|
||
|
int main(void) {
|
||
|
int tableau[10];
|
||
|
int i;
|
||
|
int n_max;
|
||
|
int index_precedent;
|
||
|
srand(time(NULL));
|
||
|
for(i=0; i<10;i++){
|
||
|
tableau[i]= (rand()%101)-50;
|
||
|
printf("%d\n", tableau[i]);
|
||
|
if (i==0){
|
||
|
index_precedent = i;
|
||
|
n_max = tableau[i];
|
||
|
}
|
||
|
else {
|
||
|
index_precedent = i-1;
|
||
|
if (tableau[i]>n_max){
|
||
|
n_max = tableau[i];
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
printf("Le plus grand élément du tableau est %d.\n", n_max);
|
||
|
}
|