Question
Can you help me execute the following PSEUDOCODE in RAPTOR program? --- BEGIN DECLARE employeeNames[100] As String employeeSalaries[100] as float name as String salary, totalSalary
Can you help me execute the following PSEUDOCODE in RAPTOR program?
---
BEGIN
DECLARE
employeeNames[100] As String
employeeSalaries[100] as float
name as String
salary, totalSalary as float
averageSalary as float
count as integer
x as integer
rangeMin, rangeMax as float
INITIALIZE
count = 0;
totalSalary =0
DISPLAY Enter employee name. (Enter * to quit.)
READ name
//Read Employee data
WHILE name != * AND count < 100
employeeNames [count] = name
DISPLAYEnter salary for + name + .
READ salary
employeeSalaries[count] = salary
totalSalary = totalSalary + salary
count = count + 1
DISPLAY Enter employee name. (Enter * to quit.)
READ name
END WHILE
//Calculate average salary with mix , max range
averageSalary = totalSalary / count
rangeMin = averageSalary - 5
rangeMax = averageSalary + 5
DISPLAY The following employees have a salary within $5,000 of the mean salary of + averageSalary + .
For (x = 0; x < count; x++)
IF (employeeSalaries[x] >= rangeMin OR employeeSalaries[x] <= rangeMax )
DISPLAY employeeNames[x] + \t + employeeSalaries[x]
END IF
END FOR
END
---
Thank you
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started