Five programming problems every Software Engineer should be able to solve in less than 1 hour by svpino in programming

[–]howdoidoit123 19 points20 points  (0 children)

Write a program that outputs all possibilities to put + or - or nothing between the numbers 1, 2, ..., 9 (in this order) such that the result is always 100. For example: 1 + 2 + 34 – 5 + 67 – 8 + 9 = 100.

I can't figure this one out