Browse Source

Importe challenge RienACarrer

Défi lancé au club programmation.
DricomDragon 4 years ago
parent
commit
b518fa1b38
3 changed files with 65 additions and 0 deletions
  1. 26 0
      square/carre.cpp
  2. 12 0
      square/carre.h
  3. 27 0
      square/main.cpp

+ 26 - 0
square/carre.cpp

@@ -0,0 +1,26 @@
+#include "carre.h"
+
+using namespace std;
+
+void carrer( const int &l )
+{
+    for ( int y(0); y<l; y++ ) { /// Dessine l lignes
+        for ( int x(0); x<l; x++ ) { /// De chacune l caractères
+            cout << " M";
+        }
+        cout << endl;
+    }
+}
+
+void bord( const int &l )
+{
+    for ( int y(0); y<l; y++ ) { /// Dessine l lignes
+        for ( int x(0); x<l; x++ ) { /// De chacune l caractères
+            if ( x == 0 || x == l-1 || y == 0 || y == l-1 )
+                cout << " M";
+            else
+                cout << "  ";
+        }
+        cout << endl;
+    }
+}

+ 12 - 0
square/carre.h

@@ -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

+ 27 - 0
square/main.cpp

@@ -0,0 +1,27 @@
+#include <iostream>
+#include <windows.h>
+#include "carre.h"
+
+using namespace std;
+
+int main()
+{
+    cout << "Rentre la longueur du cote :" << endl;
+
+    int cote;
+    cin >> cote;
+
+    if ( cote < 1 || cote > 30 ) // Longueur invalide
+    {
+        cout << "J'en ai rien a carrer." << endl;
+    }
+    else
+    {
+        cout << "Ce que j'en carre : " << endl << endl;
+        //carrer( cote );
+        bord( cote );
+    }
+
+    system("pause");
+    return 0;
+}