...

/

Challenge: Paper Sizes

Challenge: Paper Sizes

Find paper sizes from A0 to An using recursion.

We'll cover the following...

Problem statement

In this challenge, you have to implement the papersizes function.

void papersizes(int i, int n, int l, int b);

Your task is to write a recursive function that obtains paper sizes from A0 to An.

In the papersize( ) function:

  • i is passed to ...