X - CORRIGE DES EXERCICES - INPT

X - CORRIGE DES EXERCICES. Exercice IV-7: #include <iostream.h> .... getch()
;}. Exercice IV-13: #include <iostream.h> // Gestion d'une pile d'entiers.

Part of the document


X - CORRIGE DES EXERCICES

Exercice IV-7:

#include
#include
class liste
{
int taille;
float *adr;
public: liste(int);
void saisie();
void affiche();
~liste();
};

liste::liste(int t)
{taille = t;adr = new float[taille];cout