n-staircase problem Programming Software Development by Bchandaria i want a full code for finding different ways to climb the n-stair case problem that is each step is either 1 or 2 stairs. Eg- a 3-stairs staircase can be climbed in 3 ways :1-1,1-2,2-1. Using subset method can any one can help me out for this problem? Re: n-staircase problem Programming Software Development by iamthwee … std; string steps_taken = ""; void steps(int n, string steps_taken) { if (n == 0) { cout << steps_taken <<…; endl; } if (n >= 1) { steps(n - 1, steps_taken + "1"); } if (n >= 2) { steps(n - 2, steps_taken + "… Amped Wireless AP20000G High Power Wireless-N 600mW Gigabit Dual Band Acces Hardware and Software Networking by remixedcat … AP is upstairs) (there were also 3 walls a heavy staircase, and a dropped ceiling in the way as well). I… separate compilation help Programming Software Development by Dann0 … small flame does little to better your view but a staircase with a door at the top has become visable."…;); Room corridor1("\n" "You walk through the door and find yourself… Re: Need help with php contact form. Programming Web Development by benjaminFowl87 …] Another convention that many use is indentation, you have a staircase of IF statements, even with an editor and someone new… Re: really noobish Programming Software Development by Narue … it will determine whether you remain ignorant, or ascend the staircase to greatness. Don't be afraid to try new and… Re: How would I make a text adventure? Programming Software Development by Ene Uran …exits, (n)orth, (s)outh, (e)ast and (w)est.''' print prompt_main() def main_desc(): print ''' You see a staircase, however it…are wearing champion ribbons.''' prompt_main() elif prompt_m == "examine staircase": print "The stairs are totally destroyed." prompt_main… Re: How would I make a text adventure? Programming Software Development by chris99 … exits, (n)orth, (s)outh, (e)ast and (w)est.''' print prompt_main() def main_desc(): print ''' You see a staircase, however it…They are wearing champion ribbons.''' prompt_main() elif prompt_m == "examine staircase": print "The stairs are totally destroyed." prompt_main… Re: n-staircase problem Programming Software Development by Ancient Dragon >i want a full code Sorry, you are not going to get it. We don't do people's homework for them. Re: Amped Wireless AP20000G High Power Wireless-N 600mW Gigabit Dual Band Acces Hardware and Software Networking by remixedcat this should have went in the review section... oh well... ;-) Re: separate compilation help Programming Software Development by deceptikon And what's the problem? Re: separate compilation help Programming Software Development by Dann0 Sorry, I'm not sure how to go about calling each description into the main.