A company want to raise the salary of its employee. The raise rate is given as following: • The raise rate is 20% of the salary if the employee have 15 years in work or more • The raise rate is 10% of the salary if the employee have 7 years in work or more • Otherwise, the raise rate is 5% of the salary. The new salary is computed by the formula: new salary%-old salary x(1+ raise rate) Write a main program that prompts the user to enter n of employees then enter their salary and years in work of each of them. It displays the new salary for each employee and finally, it displays the average salaries of all employees after raising as shown in the following sample run. Sample run Enter the number of employees: 2 Enter the salary and the number of years of Employee 1: 1500 16 Enter the salary and the number of years of Employee 2: 800 8 The New Salary of Employee 1 is: 1800 The New Salary of Employee 2 is: 880 The average Salary of all employees is: 1340

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter5: Control Structures Ii (repetition)
Section: Chapter Questions
Problem 20PE: When you borrow money to buy a house, a car, or for some other purpose, you repay the loan by making...
icon
Related questions
Question

I need help 

A company want to raise the salary of its employee. The raise rate is given as following:
• The raise rate is 20% of the salary if the employee have 15 years in work or more
• The raise rate is 10% of the salary if the employee have 7 years in work or more
• Otherwise, the raise rate is 5% of the salary.
The new salary is computed by the formula: new salary=old salary x(1+ raise rate)
Write a main program that prompts the user to enter n of employees then enter their salary
and years in work of each of them. It displays the new salary for each employee and finally, it
displays the average salaries of all employees after raising as shown in the following sample
run.
Sample run
Enter the number of employees: 2
Enter the salary and the number of years of Employee 1: 1500 16
Enter the salary and the number of years of Employee 2: 800 8
The New Salary of Employee 1 is: 1800
The New Salary of Employee 2 is: 880
The average Salary of all employees is: 1340
Problem: 2
write a Java program that reads from the user a positive integer,
then separates the integer into its individual digits and prints a
message indicating the sum of its digits and if the sum of its
digits is odd or even.
Note that, if the user enters a negative number or zero, he should
be repeatedly asked to enter a positive number until he does.
Below you can find two sample runs:
Enter a positive number: 14597
The sum of digits of 14597 is 26 which is even
Enter a positive number: -15
Enter a POSITIVE number: -23
Enter a POSITIVE number: 0
Enter a POSITIVE number: 1235
The sum of digits of 1235 is 11 which is odd
Transcribed Image Text:A company want to raise the salary of its employee. The raise rate is given as following: • The raise rate is 20% of the salary if the employee have 15 years in work or more • The raise rate is 10% of the salary if the employee have 7 years in work or more • Otherwise, the raise rate is 5% of the salary. The new salary is computed by the formula: new salary=old salary x(1+ raise rate) Write a main program that prompts the user to enter n of employees then enter their salary and years in work of each of them. It displays the new salary for each employee and finally, it displays the average salaries of all employees after raising as shown in the following sample run. Sample run Enter the number of employees: 2 Enter the salary and the number of years of Employee 1: 1500 16 Enter the salary and the number of years of Employee 2: 800 8 The New Salary of Employee 1 is: 1800 The New Salary of Employee 2 is: 880 The average Salary of all employees is: 1340 Problem: 2 write a Java program that reads from the user a positive integer, then separates the integer into its individual digits and prints a message indicating the sum of its digits and if the sum of its digits is odd or even. Note that, if the user enters a negative number or zero, he should be repeatedly asked to enter a positive number until he does. Below you can find two sample runs: Enter a positive number: 14597 The sum of digits of 14597 is 26 which is even Enter a positive number: -15 Enter a POSITIVE number: -23 Enter a POSITIVE number: 0 Enter a POSITIVE number: 1235 The sum of digits of 1235 is 11 which is odd
Expert Solution
steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Troubleshooting
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.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning