Java tutorial
//package com.java2s; public class Main { public static int getMinutesOfWork(long startTime, long currentTime) { long timeSpent = currentTime - startTime; String timeSpentMinutes = String.valueOf(timeSpent / 60000); return Integer.valueOf(timeSpentMinutes); } }