so im on chapter 4 of basic java and the teacher said his program implements a simple "decoder ring".
It will prompt the user for a message to decode and decode the message
based on the following substitution rules:
ABCDEFGHIJKLMNOPQRSTUVWXYZ will map to
ZEBRASCDFGHIJKLMNOPQTUVWXY
abcdefghijklmnopqrstuvwxyz will also map to
ZEBRASCDFGHIJKLMNOPQTUVWXY
any other characters (like space, punctuation, will map to themselves)
so if it sees an 'A' (or an 'a'), it will map to 'Z', etc
i've tried switch statements and for loop and such but van't figure it out please help.