his is for devc++
Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
Related questions
Question
This is for devc++

Transcribed Image Text:Write a program that takes input for name,
score and school year for 3 students from a
file textData1.txt.
Print the output back with average score
(rounded to 2 decimal places) along with
names, school year and score of three
students to results1.txt.
You will need 3 string variables to store
names of 3 students, 3 double variables to
store scores of 3 students, and 3 character
variables to store school year of 3 students.
You can define average as a double variable.
You need to use ignore and clear function of
iostream to make sure data is read correctly
and completely. You might need to use
cin.ignore(200,\n') to ignore 200 characters
or new line whatever comes first.
If the file testData1.txt has the data in the
picture below then your program should
generate the data shown in the picture below:
testDatat Noteped
File Edit Formot View Help
OResultst - Notepad
Fie Edit Formet View Help
Rose
Senior
2.1
Nane
Score
School Year
. ----.
2.
Rose
Nate
6.1
2.1
Average score is 3.5e
ING
In 2. Colt
100%
Windkres KRIF)
UIT-
10/1/2120
Ln 1, Col 1
100% Windows (CRLF)
UTF 8
If the input file testData2.txt has the data as
shown in the file on left in following picture
then your program should write the following
data to the output file Results2.txt as shown
in the picture below:
sDala? - Nolepad
Results2 Notepad
File Edit Formet View Help
File Edit Format View Help
Rose
6.1
Senior
Nane
Score
School Year
Kim
2.3
.....
Rose
6.1
Kin
2.3
Average score is 2.80e
1251 PM
10/1/2120
Ln 1, Col 1
100% Windows (CRLE
UTF 8
In 1, Cl1
Windws CRLF)
UII-
Expert Solution

Program Explanation
- Include header file <iostream> for basic input/output function
- Use namespace for letting the compiler know that all the declared variables are under the declared std.
- Define main method
- Define variables for student names, their scores followed by year and one double type variable for average.
- Print statements and take input from the user.
- Compute average.
- Print the input taken and average score.
Step by step
Solved in 3 steps with 1 images

Knowledge Booster
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.Recommended textbooks for you

Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON

Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON

Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education