English

Write a program to calculate how many days of work will be completed by three people A, B, and C together. A, B, and C take x days, y days, and z days respectively to do the job alone - Computer Science (Python)

Advertisements
Advertisements

Question

Write a program to calculate how many days of work will be completed by three people A, B, and C together. A, B, and C take x days, y days, and z days respectively to do the job alone. The formula to calculate the number of days if they work together is xyz/(xy + yz + xz) days where x, y, and z are given as input to the program.

Answer in Brief

Solution

Program:

#Asking for the number of days taken by A, B, and C to complete the work alone
x = int(input('Enter the number of days required by A to complete work alone: '))
y = int(input('Enter the number of days required by B to complete work alone: '))
z = int(input('Enter the number of days required by C to complete work alone: '))

#calculating the time if all three people work together
#formula used as per the question
combined = (x * y * z)/(x*y + y*z + x*z)
#rounding the answer to 2 decimal places for easy readability
days = round(combined,2)
#printing the total time taken by all three persons
print('Total time taken to complete work if A, B, and C work together: ', days)

OUTPUT:-
Enter the number of days required by A to complete work alone: 8
Enter the number of days required by B to complete work alone: 10
Enter the number of days required by C to complete work alone: 20
Total time is taken to complete work if A, B and C work together: 3.64
shaalaa.com
Operators in Python - Operators - Arithmetic Operators (-,+,*,/,%)
  Is there an error in this question or solution?
Chapter 5: Getting Started with Python - Exercise [Page 118]

APPEARS IN

NCERT Computer Science [English] Class 11
Chapter 5 Getting Started with Python
Exercise | Q 12. | Page 118

RELATED QUESTIONS

Write a logical expression corresponding to the following statement in Python and evaluate the expressions (assuming variables num1, num2, num3, first, middle, and last are already having meaningful values):

The sum of 20 and –10 is less than 12.


Write a Python program to convert temperature in degrees Celsius to degrees Fahrenheit. If the water boils at 100 degrees C and freezes at 0 degrees C, use the program to find out what is the boiling point and freezing point of water on the Fahrenheit scale. (Hint: T(°F) = T(°C) × 9/5 + 32)


Write a Python program to calculate the amount payable if money has been lent on simple interest. Principal or money lent = P, Rate of interest = R% per annum and Time = T years. Then Simple Interest (SI) = (P × R × T)/100.

Amount payable = Principal + SI.

P, R, and T are given as input to the program.


Write a program to enter two integers and perform all arithmetic operations on them.


The volume of a sphere with radius r is `4/3πr^3`. Write a Python program to find the volume of spheres with radii 7cm, 12cm, and 16cm, respectively.


Write a program that asks the user to enter their name and age. Print a message addressed to the user that tells the user the year in which they will turn 100 years old.


The formula E = mc2 states that the equivalent energy (E) can be calculated as the mass (m) multiplied by the speed of light (c = about 3 × 108 m/s) squared. Write a program that accepts the mass of an object and determines its energy.


Give the output of the following when num1 = 4, num2 = 3, num3 = 2.

print(10 + 6 * 2 ** 2 != 9 // 4 - 3 and 29 >= 29/9)


Give the output of the following when num1 = 4, num2 = 3, num3 = 2.

print(5 % 10 + 10 < 50 and 29 <= 29)


Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×