A particular item has a demand of 9000units per year. the cost if one procurment is rs.100 and the holding cost per unit is rs.2.40 per year. the replacenent is instataneous and number of storages are allowed determine the evonomic lot size and the number of order per year and the time beteween orders and tge total cost per year if the cost of one unit rs.1
Attachments:
Answers
Answered by
4
Answer:
//to calculated the selling price
class price
{
void method(int mp)
{
int d=0;
double sp=0;
if(mp>=1 &&mp<=2000)
d=0;
else if(mp>=2001 && mp<=5000)
d=4;
else if(mp>=5001 && mp<=7500)
d=8;
else
d=10;
sp=mp-(mp*d)/100.0;
System.out.println("MARKED PRICE "+mp);
System.out.println("SELLING PRICE "+sp);
}
}
Similar questions