Answer to Question #44719 in C# for Rohit

Question #44719
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-07T04:09:25-0400
using System;
namespace Q44719
{
class Program
{
static void Main(string[] args)
{
int A_work = 15;
int B_work = 20;
Console.WriteLine("If worker A can do a job in {0} days",A_work);
Console.WriteLine("while worker B can do the same job in {0} days", B_work);
Console.WriteLine("So the total number of days required to finish the work ");
Console.WriteLine("if both the workers worksimultaneously is {0:#.##}", 1/(1/(double)A_work + 1/(double)B_work));
Console.ReadKey();
}
}
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS