CS 121 Programming Assignment #6
Due: Thursday, April 17.
Use recursion in both of the following:
- Chapter 8, programming project 10 (page 440).
- Write a program to output all permutations of a string
that is input by the user. For example, if the user inputs
"abc", the program will output,
abc
acb
bac
bca
cab
cba
Hints for an algorithm will be given in class.
Submit: A BlueJ project for each program.