|
@@ -0,0 +1,12 @@
|
|
|
+#ifndef CARRE_H_INCLUDED
|
|
|
+#define CARRE_H_INCLUDED
|
|
|
+
|
|
|
+#include <iostream>
|
|
|
+
|
|
|
+/// Cette fonction affiche un joli carré en console
|
|
|
+void carrer( const int &l );
|
|
|
+
|
|
|
+/// Cette fonction affiche le contour d'un joli caré
|
|
|
+void bord( const int &l );
|
|
|
+
|
|
|
+#endif // CARRE_H_INCLUDED
|