Question
can you analyze my code and find the problems #include #include #include using namespace std; char Rot13(char translated) { if(translated >= 'A' && translated {
can you analyze my code and find the problems
#include
#include
#include
using namespace std; char Rot13(char translated)
{
if(translated >= 'A' && translated
{
return (translated - 'A' + 13) % 26 + 'A';
}
else if(translated >= 'a' && translated
{
return (translated - 'a' + 13) % 26 + 'a'; }
return translated; }
void WriteTranslatedCharacter(char changed_character, ofstream& output)
{
output
int main()
{
string fileName;
cout
cin >> fileName;
ifstream inputfile(fileName.c_str()); ofstream outfile("output.rot13"); if(!inputfile)
{ cout
char char_file = inputfile.get();
while(!inputfile.eof())
{
WriteTranslatedCharacter(Rot13(char_file), outfile);
char_file = inputfile.get(); }
inputfile.close();
outfile.close();
system("pause");
return 0; }
ROT13 (rotate by 13 places) is a simple letter substitution cipher that is an instance of a Caesar cipher developed in ancient Rome and used by Julius Caesar who used it in his private correspondence. ROT13 replaces a letter with the letter 13 letters after it in the alphabet. The following table demonstrates the translation in ROT 13 Thus, the translation of the word JULIUS using ROT13 would be WHYVHF. Write a C++ program that asks the user for the name of an input file and translates the contents of that input file using ROT13. Your main function should be responsible for reading the input file and coordinating calls to a value returning function named Rot13 that will do the translation for each character and Write TranslatedChar that will write the translated character to a secondary file. The Rot13 function takes as input the character to be translated and returns the translated character. The second function named Write TranslatedCharwll have two parameters, the translated character and a reference to an ifstream data type for a secondary file named "output.rot13", and write that translated character to this fileStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started