Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

** C PROGRAMMING** Write a complete C program that calculates the promotion of employees in a company. Ask the employee to enter their age, salary,

** C PROGRAMMING**

Write a complete C program that calculates the promotion of employees in a company. Ask the employee to enter their age, salary, and years of service. If:

-The employee's age is less than 30 and their years of service are less than 3 years, add $200 to their salary.

-The employee's age is greater than 40 or their years of service are more than 5, add $300 to their salary.

-Otherwise, add $100 to their salary.

Example Output

Enter your age: 50

Enter your salary: 4000

Enter your years of service: 6

Your salary = 4000 + 300 = $4300

--------------------------------

Enter your age: 35

Enter your salary: 5000

Enter your years of service: 4

Your salary = 5000 + 100 = $5100

Rubrics

-2 point(s) - Correct implementation of scanf.

-3 point(s) - Correct implementation of if statement.

-2 point(s) - Correct output.

-3 point(s) - No syntax errors.

image text in transcribed

Write a complete C program that calculates the promotion of employees in a company. Ask the employee to enter their age, salary, and years of service. If: The employee's age is less than 30 and their years of service are less than 3 years, add $200 to their salary. The employee's age is greater than 40 or their years of service are more than 5, add $300 to their salary. Otherwise, add $100 to their salary. Example Output Enter your age: 50 Enter your salary: 4000 Enter your years of service: 6 Your salary = 4000 + 300 = $4300 Enter your age: 35 Enter your salary: 5000 Enter your years of service: 4 Your salary = 5000 + 100 = $5100 Rubrics 2 point(s) - Correct implementation of scanf. 3 point(s) - Correct implementation of if statement. 2 point(s) - Correct output. 3 point(s) - No syntax errors

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Security

Authors: Alfred Basta, Melissa Zgola

1st Edition

1435453905, 978-1435453906

More Books

Students also viewed these Databases questions

Question

What is a normal probability plot and how is it used?

Answered: 1 week ago