Click here to Skip to main content
15,884,176 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi, how to calculate Amount based on Number of hours?
suppose

for example:

some X(hours)= Y(price),
2X=price?
3X=Price?
.....
.....
24Hours=Price?
.....
3Days=Price?
.....
.....
10days=Price?

thanx in advance..
Posted
Comments
Rajesh Kariyavula 31-May-12 2:21am    
Price is defined for an hour or a day? Do you want to derive a formula for this?
sandeep nagabhairava 31-May-12 2:28am    
for example 1-3 hours 15rs,1-6 hours 30rs,1-12 hours 45rs.... yes i want formula for this, if u know plz help me..
Rajesh Kariyavula 31-May-12 2:41am    
I suppose that you will be entering a time and you want to get amount based on the rules you have set like 1-3 hours 15rs,1-6 hours 30rs,1-12 hours 45rs. Is it correct?
sandeep nagabhairava 31-May-12 2:45am    
yes exactly...

Try this logic:

C#
decimal _duration = 3; //the input time
decimal price = 15; //As I noticed there is 15/- raise on doubling hours.

decimal Amount = (_duration / 3) * price;


Hope this helps.
Tell me if I got you wrong. I'll correct it.
 
Share this answer
 
Hi Sandeep,
I think you want to calculate salary on the basis of hours if so, this link might help you-
salary-calculation on basis of hours[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900