Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. public class Convert
  2. {
  3.     private double rate;
  4.  
  5.     public Convert(double rate)
  6.     {
  7.         this.rate = rate;
  8.     }
  9.  
  10.     public double convert(double amount)
  11.     {
  12.         return Math.floor(amount*rate*100+.5)/100;
  13.     }
  14. }