Here you can find the source of convertDoubleToPercentage(double doub)
public static double convertDoubleToPercentage(double doub)
//package com.java2s; //License from project: Apache License public class Main { /***********************************************************************/ public static double convertDoubleToPercentage(double doub) { return doub * 100; }/*from w ww . j av a2s .c om*/ }