Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- function my_put_nbr_base($x)
- {
- $fin = $x % 10;
- $debut = $x / 10;
- if ($debut != 0)
- my_put_nbr_base($debut);
- echo $fin + 0;
- }
- function my_aff_combn($n)
- {
- $i = 0;
- while ($i< (10^$n-1))
- {
- echo 0;
- my_put_nbr_base($i);
- echo ', ';
- $x++;
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement