Worker A can do a job in 15 days while worker B can do the same job in 20 days. Write a program to calculate the total number of days required to finish the work if both the workers work simultaneously.
1
Expert's answer
2014-08-08T04:47:11-0400
using System; namespace Q44779 { class Program { static void Main(string[] args) { double result = 1 / (1 / (double)15 + 1 / (double)20); Console.WriteLine("If worker A can do a job in 15 days"); Console.WriteLine("while worker B can do the same job in 20 days"); Console.WriteLine("So the total number of days required to finish the work "); Console.WriteLine("if both the workers worksimultaneously is {0:#.##}", result); Console.ReadKey(); } } }
Numbers and figures are an essential part of our world, necessary for almost everything we do every day. As important…
APPROVED BY CLIENTS
"assignmentexpert.com" is professional group of people in Math subjects! They did assignments in very high level of mathematical modelling in the best quality. Thanks a lot
Comments
Leave a comment