2023-11-21 19:10:07 +00:00
|
|
|
void ft_print_combn(int n);
|
|
|
|
void ft_putchar(char);
|
|
|
|
int main(void)
|
|
|
|
{
|
|
|
|
ft_print_combn(1);
|
|
|
|
ft_putchar('%'); ft_putchar('\n');
|
|
|
|
ft_print_combn(2);
|
|
|
|
ft_putchar('%'); ft_putchar('\n');
|
|
|
|
ft_print_combn(3);
|
|
|
|
ft_putchar('%'); ft_putchar('\n');
|
|
|
|
ft_print_combn(4);
|
|
|
|
ft_putchar('%'); ft_putchar('\n');
|
|
|
|
ft_print_combn(5);
|
|
|
|
ft_putchar('%'); ft_putchar('\n');
|
|
|
|
ft_print_combn(6);
|
|
|
|
ft_putchar('%'); ft_putchar('\n');
|
|
|
|
ft_print_combn(9);
|
|
|
|
ft_putchar('%'); ft_putchar('\n');
|
|
|
|
ft_print_combn(10);
|
|
|
|
ft_putchar('%'); ft_putchar('\n');
|
|
|
|
|
|
|
|
}
|
2023-11-30 19:05:07 +00:00
|
|
|
|
|
|
|
void setUp(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void tearDown(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|