XI- CORRIGE DES EXERCICES - INPT
XI- CORRIGE DES EXERCICES. Exercice ... {gotoxy(x,y-1);cout<<message; ...
objets transmis en argument d'une fonction membre - transmission de l'adresse.
Part of the document
XI- CORRIGE DES EXERCICES
Exercice III-2:
#include // Surdefinition de fonctions
#include
class point
{
int x,y;
public: point(); // constructeur 1
point(int);// constructeur 2
point(int,int);// constructeur 3
void affiche();
void affiche(char *); // argument de type chaine
};
point::point() // constructeur 1
{x=0;y=0;}
point::point(int abs) // constructeur 2
{x=y=abs;}
point::point(int abs,int ord) // constructeur 3
{x = abs; y = ord;}
void point::affiche() // affiche 1
{gotoxy(x,y);cout