Exercice langage C corrigé afficher type tableau

#include
using namespace std;

const int N=10;

int main()
{
int a[N],i;
bool trouve=false;
bool croissant=true,decroissant=true;

for(i=0;i<N;i++)
        {
        cout<<"Veuillez taper l'entier numero "<<i<<" : ";cin>>a[i];
        }
for(i=0;i<N-1;i++)
        {
        if(a[i]>a[i+1])croissant=false;
        if(a[i]<a[i+1])decroissant=false;
        }

if(croissant && decroissant) cout<<"le tableau est constant"<<endl;
if(croissant && !decroissant) cout<<"le tableau est croissant"<<endl;
if(!croissant && decroissant) cout<<"le tableau est decroissant"<<endl;
if(!croissant && !decroissant) cout<<"le tableau est quelconque"<<endl;

return 0;
}

Télécharger aussi :

Laisser un commentaire

Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *