Answer:
This code looks correct, but there is a small issue that may affect the accuracy of the temperature conversion. In the calculation for the temperature in Celsius, you are dividing 5 by 9 using integer division, which means that the division will be truncated to an integer and any decimal values will be discarded. To avoid this, you need to cast one or both of the values to a floating-point type, such as double.
Step-by-step explanation:
#include <iostream>
#include <fstream> //enables use of ifstream class
#include <string>
using namespace std;
int main() {
// Declaring object/variables
ifstream inFS; //input file stream
ofstream outFS; //output file stream
string cityName; //Name of city from file
int tempFarenheit; //Farenheit temp
double tempCelsius; //Celsius temp (double because when calculating, there will be a decimal)
// Opening Farenheit file
inFS.open("FarenheitTemperature.txt");
// Creating Celsius file
outFS.open("CelsiusTemperature.txt");
// Creating a while loop that reads FarenheitTemperature.txt info, converts temp from F to C
// using formula provided, then writes new info to CelsiusTemperature.txt file
while (inFS >> cityName >> tempFarenheit) {
tempCelsius = (tempFarenheit - 32) * (5.0 / 9.0);
outFS << cityName << " " << tempCelsius << endl;
}
// Closing files
inFS.close();
outFS.close();
return 0;
}