This project asks the students to read input data from a file, do some processin
ID: 3631734 • Letter: T
Question
This project asks the students to read input data from a file, do some processing, and direct the output onto the screen.Use Visual C++ to write your program.
Write a C++ program that reads a series of 12 temperatures (floating-point numbers) from an input file. It should prompt the user for the name of the input file. The input file should be place in the same directory where your source program resides. It should write out on the screen each temperature and the difference between the current temperature and the one preceding it. The difference is not output for the first temperature that is input. At the end of the program, the average temperature should be displayed to the 4th place after the decimal point. For example, given the following input data:
34.5 38.6 42.4 46.8 51.3 63.1 60.2 55.9 60.3 56.7 50.3 42.2
The output on the screen should be:
Please enter the input file name: XXXXX
The 12 temperatures read from file XXXXX is:
34.5
38.6 4.1
42.4 3.8
46.8 4.4
51.3 4.5
63.1 11.8
60.2 -2.9
55.9 -4.3
60.3 4.4
56.7 -3.6
50.3 -6.4
42.2 -8.1
The average temperature is: 50.1917
Be sure to use proper formatting and appropriate comments in your code. The input should have appropriate prompts, and the output should be labeled clearly and formatted neatly.
Explanation / Answer
#include using namespace std; int main() { ofstream SaveFile("temptxt"); SaveFileRelated Questions
Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.