Task 3: Reading and Writing a File Write a C program that will get 10 grades of the student from a file named grades.txt. The program will check each grade if its passing, failing or invalid. Passing...


Task 3: Reading and Writing a File
Write a C program that will get 10 grades of the student from a file named grades.txt. The program will check each grade if its passing, failing or invalid. Passing grade is 70-100. Failing grade is 0-69. Other value will be considered invalid. Store all the passing grade to an output file named passed.txt. Store all the failing grades to an output file named failed.txt. And store all the invalid grades to another output file named invalid.txt. The program must comply with the given sample output below:
NOTE:
Filename to read: grades.txt
Filename to write: passed.txt, failed.txt, invalid.txt
NOTE:
Your source code must display any of the given sample output below.
It means your source code should be flexible enough to meet any of the given sample output.
Your source code output must be identical to any of the given sample output.
It means you have to strictly follow what are the displayed text, labels, casing of characters in the sample output.
Strictly follow the naming of file.



Required Outputs is attached



Sample OUTPUT1:<br>Sample OUTPUT2:<br>Enter File Name: grades.txt<br>Enter File Name: grades.txt<br>All grades are evaluated and stored in their respective files.<br>All grades are evaluated and stored in their respective files.<br>DISPLAY FILE MENU<br>DISPLAY FILE MENU<br>[1] Passing<br>[1] Passing<br>[2] Failing<br>[2] Failing<br>[3] Invalid<br>[3] Invalid<br>Option: 1<br>Option: 2<br>Passing Grades: 100, 90, 70, 99,<br>Failing Grades: 50, 0, 69, 1,<br>Sample OUTPUT3:<br>Sample OUTPUT4:<br>Enter File Name: grades.txt<br>Enter File Name: grades.txt<br>All grades are evaluated and stored in their respective files.<br>All grades are evaluated and stored in their respective files.<br>DISPLAY FILE MENU<br>DISPLAY FILE MENU<br>[1] Passing<br>[1] Passing<br>[2] Failing<br>[2] Failing<br>[3] Invalid<br>[3] Invalid<br>Option: 3<br>Option: 4<br>Invalid Grades: 101, -1,<br>Invalid Option<br>Sample OUTPUT5:<br>Enter File Name: grade.txt<br>The file can't be open. File does not exists.<br>

Extracted text: Sample OUTPUT1: Sample OUTPUT2: Enter File Name: grades.txt Enter File Name: grades.txt All grades are evaluated and stored in their respective files. All grades are evaluated and stored in their respective files. DISPLAY FILE MENU DISPLAY FILE MENU [1] Passing [1] Passing [2] Failing [2] Failing [3] Invalid [3] Invalid Option: 1 Option: 2 Passing Grades: 100, 90, 70, 99, Failing Grades: 50, 0, 69, 1, Sample OUTPUT3: Sample OUTPUT4: Enter File Name: grades.txt Enter File Name: grades.txt All grades are evaluated and stored in their respective files. All grades are evaluated and stored in their respective files. DISPLAY FILE MENU DISPLAY FILE MENU [1] Passing [1] Passing [2] Failing [2] Failing [3] Invalid [3] Invalid Option: 3 Option: 4 Invalid Grades: 101, -1, Invalid Option Sample OUTPUT5: Enter File Name: grade.txt The file can't be open. File does not exists.

Jun 09, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here