Here you can find the source of minute2hour(int minute)
public static String minute2hour(int minute)
//package com.java2s; //License from project: Apache License public class Main { public static String minute2hour(int minute) { return String.valueOf(1.0 * ((minute + 3) * 10 / 60) / 10); }/* w ww. ja va2 s . c om*/ }