carre.h 262 B

123456789101112
  1. #ifndef CARRE_H_INCLUDED
  2. #define CARRE_H_INCLUDED
  3. #include <iostream>
  4. /// Cette fonction affiche un joli carré en console
  5. void carrer( const int &l );
  6. /// Cette fonction affiche le contour d'un joli caré
  7. void bord( const int &l );
  8. #endif // CARRE_H_INCLUDED