Can you do this one?Write a statement that assigns finalValue with the division of userNum1 by userNum2. Ex: If userNum1 is 6 and userNum2 is 2, finalValue is 3. I Dion't know what I'm doing wrong!
Write a programme for displaying a school with different labs and their equipment’s and their prices
Write a C++ program that asks the user to store the basic salaries of 50 employees in a 1-D array called Salaries and their overtime hours in a 1-D array called OvertimeHours (5 points). Each employee will be paid $30 for each overtime hour. The program should call a functions to do each of the following:
· Store in an array called finalSalaries the final salaries of the 50 employees. An employee’s final salary is computed as the sum of the basic salary and the earned overtime payments. Also note that a 4% income tax is deducted from the computed final salary. (5 points).
· Output an ascending sorted list of the employees’ final salaries. (5 points).
· Increase by 2% the basic salaries of the employees who worked for more than 10 overtime hours. (5 points).
Write a C++ program to calculate the total marks of each student of a class. This class takes the
following subjects Physics, Chemistry and Mathematics. Your program shall be able to calculate the
total marks for each student, this is the sum of marks from the three subjects