Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <iostream>
- #include <string>
- using namespace std;
- string afficheTete(int niveau)
- {
- if(niveau == 1)
- {
- cout << /*truc appropriƩ */;
- }
- cout << /* truc appropriƩ contenant afficheTete(niveau-1) */;
- }
- int main(void)
- {
- int niveau;
- cin >> niveau;
- afficheTete(niveau);
- cout << '\n';
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement