31 0 98KB
Licence Sciences Pour l'Ingénieur & Licence Physique, Chimie 3ème année Programmation en C/C++ - TD n°4 Année Universitaire 2020-2021
Exercice n°1 : classe. Soit la classe "point" suivante : class point { float x, y ; public : point (float abs = 0.0, float ord = 0.0) { x = abs ; y = ord ; } void affiche ( ) { cout