This topic is totally new to me.so can anyone kindly write the answer of this question for me.Thank you.
1.Use Caesar's method.The encrypted text should be found in a text file named "message.txt" and the encrypted text should be written in a text file called "cypher.txt
1. Learn about Caesar's method http://en.wikipedia.org/wiki/Caesar_cipher
2. Start writing program:
a) open message.txt for reading
b) open cypher.txt for writing
c) write a while loop over characters in message
d) translate each character, and write it into cypher
e) when you finish the loop, close message.txt and cypher.txt
DONE