Question: I need help on this one. I keep getting an error code and am unsure as to why. In this assignment, you are presented with
I need help on this one. I keep getting an error code and am unsure as to why.
In this assignment, you are presented with a text document that includes six cities and their average yearly temperature in Fahrenheit. Your goal is to read that data, convert it to Celsius using the provided formula, and then write that new data to its own file.
To begin your work, open Visual Studio and create a new C++ project. Save the provided FahrenheitTemperature.txt document in a location where you will easily be able to access it while you work in Visual Studio. For this assignment, you will be submitting only your C++ (.cpp) file. You do not need to submit the final converted data; the C++ code you create just needs to be able to generate that file.
Specifically, you must address the following rubric criteria:
- Develop code to read data from a text file. Your work should be completed using C++. Read the provided document,FahrenheitTemperature.txt, which includes data on the average yearly temperature for six different cities in degrees Fahrenheit. Note that a space separates each city from its temperature. Assume the city's name does not include any spaces or special characters (the name should consist of only a single word). Also assume the provided temperature is presented as an integer. Consider the following steps as you work:
- Open the provided file so it is ready to be read. Remember the file is named FahrenheitTemperature.txt. Watch out for the class you use, and make sure it is for reading a file and not writing to a file.
- Read data from the provided file. Remember, to read this file you will need to declare a variable. Begin by reading the first value and putting it in the first variable. Then read the next value and put it in the second variable.
- Once this is complete, be sure to close the file. This releases the file so it can be used again.
- Develop code to write data to a text file. Your work should be completed using C++. Title the new document you are creatingCelsiusTemperature.txt. The name of the output file needs to be different from the name of the input file so you do not overwrite and erase the input file. Consider the following steps as you work:
- Declare a variable to point to the file that will be written to. Watch out for the class you use, and make sure it is for writing to a file and not reading a file.
- Create the code instructions for writing data to the new output file. In this new file, include space for both the name of the city and the temperature in Celsius for each city included in the original input file. You will need to complete the Fahrenheit-to-Celsius conversion calculation before you write to the new file. Use the following formula to make this conversion. Note that F represents the temperature in degrees Fahrenheit while C represents the temperature in degrees Celsius.
- Close the file once you are done writing to it. If you attempt to look at the results in the file before completing this step, your file may appear empty.
- Here's the code I have, but I keep getting this error: Can't open file
#include
int main() { ifstream file; file.open("FahrenheitTemperature.txt");
ofstream file2; file2.open("CelsiusTemperature.txt");
string name; int temp; double res;
if (!file || !file2) cout << "Cant open file! " << endl;
while (file >> name >> temp) { res = (temp - 32.0) * 5.0 / 9.0; file2 << name << " " << res << endl; }
file.close(); file2.close(); return 0; }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
