Do you want to be clearer about what you don't understand. (It might be slightly clearer if you replace "£1" with "100p" and "£2" with "200p" throughout the question. – Tom Hawtin - tacklineApr 26 at 10:47
Please don't re-add the java tag. The question is not Java related. – Joachim SauerApr 26 at 10:48
The question is basically how many possible combinations are there to get 2£ worth of money (= 200p) when you have the 8 different types of coins available.
Here are just a few (trivial) possible combinations:
1 x 2£
2 x 1£
200 x 1p
1 x 1£ + 100 x 1p
...
The question is: how many such combinations are possible?
As such, it is clear about the value of a pound in terms of pence. I think the question is more about the eventual goal of the problem. It asks
"How many different ways can £2 be made using any number of coins?"
The confusion here seems to be about order. Having solved this problem, I will state that order is unimportant in the solution. All that matters is the number of coins of each denomination required to make up the total of 200p.
I'll add the suggestion that this is a small problem, very solvable with simple recursion. If you are unsure about how to proceed, a place to look is in the theory of the partitions of a number.
You have to break this problem down into the question of how many ways you can make each coin value with coins of the same or lower values. This would lead you to something like this (I hope my assumptions are correct):
Stack Overflow is a collaboratively edited question and answer site for programmers – regardless of platform or language. It's 100% free, no registration required.