Answer to Question #4785 in Java | JSP | JSF for Francis Ogutu

Question #4785
Write a method
int bumpMe(int price, int increase, Boolean updown)
That accepts a price in dollars and returns a new price rounded to the nearest dollar, after increasing /decreasing price by increase percent. If updown is true then you should increase the price ;otherwise, decrease the price. Write an appropriate main(…)method to test bumpMe(…)
1
Expert's answer
2012-05-18T10:56:41-0400
public class Test {

public static void main(String[] args)
{
Test myTest = new Test();

System.out.println(myTest.bumpMe(4, 25, true));

System.out.println(myTest.bumpMe(20, 10, false));
}

private
int bumpMe(int price, int increase, Boolean updown) {
if (updown)
{
return (int) Math.round(price + ((float) price * increase /
100));
} else {
return (int) Math.round(price -
((float) price * increase / 100));
}
}
}

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
APPROVED BY CLIENTS