Prompt: Submit a program that uses randomness and the orthographic rules of any natural language to generate memorizable passwords. These passwords are gibberish text, about ten letters long, with unambiguous pronunciations. Your program should indicate the language used and output ten possible passwords.
I'm very confused on how to create this program...any ideas?
http://www.cplusplus.com/forum/beginner/100727/
What exactly do you have problems with?
Did you choose the language? DId you thought about possible ambiguity in prononciation and how to avoid it? About specific language rules?
Like code-wise, I guess. I know I should try stacking 2-3 arrays of 20 and ending it with another array of 11. But my issue is mainly how to set this up.
Depending on language you will use. I would use Japanese. Made an array of all syllables excluding 'n' and just stack them randomly. No ambiguous prononciation and no need to worry about language rules and incorrect letter placing.
Using kunrei romanization and ':' for long vowels. Example: ritayuto:ni
Unambiguous pronounciation, does not go against language rules, easy to remember.
You can choose any language you have experience with, so you could anticitpate possible problems and choose best generation algorithm.
Wow, best illustration to how you shouldn't write your programs:
a) goto instead of control stalements
b) algorithm with complexivity in worst case O(n) = ∞
c) does not do what asked:
program that uses randomness and the orthographic rules of any natural language to generate memorizable passwords. These passwords are gibberish text, about ten letters long, with unambiguous pronunciations.
OP, you should choose language first, because algorythm can vary wildly depending on it.