Java Money multiMoney(Integer money)

Here you can find the source of multiMoney(Integer money)

Description

multi Money

License

Open Source License

Declaration

public static Integer multiMoney(Integer money) 

Method Source Code

//package com.java2s;
//License from project: Open Source License 

public class Main {
    public static Integer rate = 1000;

    public static Integer multiMoney(Integer money) {
        if (money == null)
            return 0;
        else {//from w w w  .  j  a v  a2s . co  m
            return money * rate;
        }
    }
}

Related

  1. isMoney(String str)
  2. isMoney(String[] Moneys, String key)
  3. moneyChange(String money)
  4. moneyFenToYuan(String amount)
  5. moneyMinus(float a, float b)
  6. string2Money(String money)
  7. translateMoneyStr(String money)