Java Second to Minute toMinutes(int s)

Here you can find the source of toMinutes(int s)

Description

to Minutes

License

Apache License

Declaration

public static int toMinutes(int s) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    public static int toMinutes(int s) {
        return s / 60;
    }//from   w  w  w  .  j a  va2s  .com
}

Related

  1. timeToMinute(String time)
  2. timeToMinutes(String in)
  3. toDecimal(long seconds, int nanoseconds)
  4. toDecimal(long seconds, int nanoseconds)
  5. toMinutes(int hour, int minutes)
  6. toMinutes(long date)
  7. toMinutes(long millis)