Only letters are affected

Assignment Help C/C++ Programming
Reference no: EM13168389

"C ++ In this assignment, you are to write a ROT13 (for "rotate 13") decoder to translate a secret message from its encoded state to something readable. In a ROT13 code, 'a' is shifted 13 letters to 'n', 'B' to 'O', 'c' to 'p', 'D' to 'Q', ..., 'N' to 'A', 'o' to 'b', 'P' to 'C', 'q' to 'd', etc. Only letters are affected; punctuation, spaces, and all other characters remain the same. Your program should read the secret message out of a file called "secretMessage.txt" and should write the decoded message into a file called "decodedMessage.txt" Please take care to name the files exactly as shown in this description, paying particular care to capitalization."
Please dont use advanced techniques im just learning all this stuff.

#include <iostream>
#include <cmath>
#include <string>
#include <fstream>

using namespace std;

int main()
{
    ifstream inputFile;
    ofstream outputFile;
    char ch;

    inputFile.open("secretMessage.txt");
    outputFile.open("decodedMessage.txt");
    ch=inputFile.get();

    while (!inputFile.eof())
    {

        if ((ch>='A') && (ch<='Z'))
        {
            ch+=13;
           
        }
        else if ((ch>='a') && (ch<='z'))
        {

           ch+=13
        }

        ch=inputFile.get();
    }

    inputFile.close();
    outputFile.close();

    cout<<endl<<endl;
    return 0;
}

Reference no: EM13168389

Questions Cloud

Calculate the final volume of the balloon : A gas-filled balloon having a volume of 4.00 L at 1.2 atm and 25°C is allowed to rise to the stratosphere (about 30 km above the surface of Earth), where the temperature and pressure are -23°C and 3.00 multiplied by 10-3 atm, respectively. Calcula..
Can we offer an example of a query : Can we offer an example of a Query in which we can use a parentheses to affect the order of execution in which the WHERE Clause has both AND and OR Logical Operators?
Explain the difference between a fluorescence emission spect : Explain the difference between a fluorescence emission spectrum and a fluorescence excitation spectrum. Which more closely resembles an absorption spectrum?Why do some absorbing compounds fluoresce but others do not?
What is the purpose of adding sodium sulfate to the organic : What is the purpose of adding sodium sulfate to the organic layer after all of the extractions are complete?
Only letters are affected : You are to write a ROT13 (for "rotate 13") decoder to translate a secret message from its encoded state to something readable. In a ROT13 code, 'a' is shifted 13 letters to 'n', 'B' to 'O', 'c' to 'p', 'D' to 'Q', ..., 'N' to 'A', 'o' to 'b', 'P' ..
Program (starting at address $4000) to find the average : Write a program (starting at address $4000) to find the average of four 16-bit
How many moles of each product are formed : If the average human body discharges 925.0g CO2 per day, how many moles of NaOHare needed each day for each person in the spacecraft?( 42.04 mol NaOH)
Prove by contradiction that if n is a perfect square : Let n > 1 be an integer. Prove by contradiction that if n is a perfect square, then n + 3 cannot be a perfect square.
What is the energy of a photon of this wavelength : one type of sunburn occurs on exposure to UV light of wavelength in the vicinity of 325nm.

Reviews

Write a Review

C/C++ Programming Questions & Answers

  Create program that uses functions and reference parameters

Create program that uses functions and reference parameters, and asks user for the outside temperature.

  Write a program using vectors and iterators

Write a program using vectors and iterators that allows a user to maintain a personal list of DVD titles

  Write the code required to analyse and display the data

Calculate and store the average for each row and column. Determine and store the values for the Average Map.

  Write a webservices application

Write a webservices application that does a simple four function calculator

  Iimplement a client-server of the game

Iimplement a client-server version of the rock-paper-scissors-lizard-Spock game.

  Model-view-controller

Explain Model-View-Controller paradigm

  Design a nested program

How many levels of nesting are there in this design?

  Convert celsius temperatures to fahrenheit temperatures

Write a C++ program that converts Celsius Temperatures to Fahrenheit Temperatures.

  Evaluate and output the value in the given base

Write C program that will input two values from the user that are a Value and a Base with which you will evaluate and output the Value in the given Base.

  Design a base class shape with virtual functions

Design a base class shape with virtual functions

  Implementation of classes

Implementation of classes Chart and BarChart. Class barChart chould display a simple textual representation of the data

  Technical paper: memory management

Technical Paper: Memory Management, The intent of this paper is to provide you with an in depth knowledge of how memory is used in executing, your programs and its critical support for applications.

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd