EXERCICE 3
Ecrire un programme qui demande à l'utilisateur de saisir 10 entiers stockés dans un tableau. Le programme doit ensuite afficher l'indice du plus grand élément.
Solution
- Cet exercice a pour but de vérifier les points techniques suivants :
- Utilisation simple de tableaux.
- Un algorithme simple sur un tableau : recherche de l'indice du plus grand élément.
- Voici le fichier source :
#include<iostream>
using namespace std;
const int N=10;
int main()
{
int t[N],i,indice;
for(i=0;i<N;i++){cout<<"Tapez un entier ";cin>>t[i];} indice=0;
for(i=1;i<N;i++)
if(t[indice]<t[i])indice=i;
cout<<"L'indice du plus grand élément est : "<<indice<<endl;
return 0;
}
Aucun commentaire:
Enregistrer un commentaire