Link to home
Start Free TrialLog in
Avatar of Sylvester_usmc
Sylvester_usmc

asked on

Mr. marko_svaljek

Thanks for your help...
The input file is just a Notepad file wich has different scores:
Scores.txt
100
56
98
74
86
90
And the output file is rpt.txt with the numeric grade first and then the letter that correspond to that numeric grade, and at the end I need the average numeric grade "rounded" as an integer using the round fuction. Example: Average of 87.8 should print 88
NUMERIC      LETTER  
  GRADE       GRADE
   XXX          X
   XXX          X

   XXX          X   AVERAGE
Thanks
Sylvester

Write a function called Grader that takes a numeric score and returns a letter grade. Grader has one argument of type integer and returns a value of type Char.
Use the rules that 90-100=A, 80-90=B, etc.
Embed the function in a program that has an input controlled loop which reads the numeric score and writes the numeric ad letter grades to a file plus writes the class average as a numeric and a letter grade.
NUMERIC      LETTER  
  GRADE       GRADE
   XXX          X
   XXX          X

   XXX          X   AVERAGE
Average numeric grade is "rounded" and is an integer.
Use Pascal's built-in ROUND function.
Example: Average of 87.8 should print 88

Thanks
Avatar of dbrunton
dbrunton
Flag of New Zealand image

Cough

We don't do homework.

Post some code first and let us see what you have done.  Then we'll give advice.
You will need:

- "Round()" to convert the floating-point value to an integer value.

- "Case ... Of" construct to take apart the different grade types.

Really easy.
ASKER CERTIFIED SOLUTION
Avatar of marko_svaljek
marko_svaljek

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Sylvester_usmc
Sylvester_usmc

ASKER

Thanks for your help...
The input file is just a Notepad file wich has different scores:
Scores.txt
100
56
98
74
86
90
And the output file is rpt.txt with the numeric grade first and then the letter that correspond to that numeric grade, and at the end I need the average numeric grade "rounded" as an integer using the round fuction. Example: Average of 87.8 should print 88
NUMERIC      LETTER  
GRADE       GRADE
 XXX          X
 XXX          X

 XXX          X   AVERAGE
Thanks
Sylvester

Write a function called Grader that takes a numeric score and returns a letter grade. Grader has one argument of type integer and returns a value of type Char.
Use the rules that 90-100=A, 80-90=B, etc.
Embed the function in a program that has an input controlled loop which reads the numeric score and writes the numeric ad letter grades to a file plus writes the class average as a numeric and a letter grade.
NUMERIC      LETTER  
GRADE       GRADE
 XXX          X
 XXX          X

 XXX          X   AVERAGE
Average numeric grade is "rounded" and is an integer.
Use Pascal's built-in ROUND function.
Example: Average of 87.8 should print 88

Thanks  
This was may first answered question!
Thank you.

;)