Create an inputfile named "inputFile.txt" (use "Note Pad") that contains the following data. Be sure that the last line of the file is empty (i.e., not even a space character). In other words, after entering the second line of data, press the key, save the file, then exit the editor. 5 10 6 9 23 7 13 40 Implement the following algorithm Create & Open inputFile Create & Open outputFile Read first line of data into variables a, b, c, d DOWHILE !EOF Create a unique formula that uses the variables a, b, c, & d. For example, value = (a*a) + b - c + d Output value into outputFile Read each line of data into variables a, b, c, d ENDDO Close inputFile Close outputFile Post the source code (embed the code in your response; DO NOT ATTACH THE C++ FILE).
Create an inputfile named "inputFile.txt" (use "Note Pad") that contains the following data. Be sure that the last line of the file is empty (i.e., not even a space character). In other words, after entering the second line of data, press the <ENTER> key, save the file, then exit the editor.
5 10 6 9
23 7 13 40
Implement the following
Create & Open inputFile
Create & Open outputFile
Read first line of data into variables a, b, c, d
DOWHILE !EOF
Create a unique formula that uses the variables a, b, c, & d. For example,
value = (a*a) + b - c + d
Output value into outputFile
Read each line of data into variables a, b, c, d
ENDDO
Close inputFile
Close outputFile
Post the source code (embed the code in your response; DO NOT ATTACH THE C++ FILE).
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 1 images