Java Second Convert toCentiSeconds(float t)

Here you can find the source of toCentiSeconds(float t)

Description

to Centi Seconds

License

Open Source License

Declaration

public static int toCentiSeconds(float t) 

Method Source Code

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

public class Main {
    public static int toCentiSeconds(float t) {
        return (int) (t / 10);
    }//from  ww w  .  j a  va2s. co  m
}

Related

  1. secondsToTimeString(long in_seconds)
  2. secondsToTimeString(long seconds)
  3. secondsToYWDHMS(long seconds)
  4. SecondToMin(double asec)
  5. timeStringToSeconds(String str)
  6. toDaySecondDifference(long difference)
  7. toHhMmSs(long seconds)
  8. toNanoseconds(long sec, long nanos)
  9. toSeconds(double value)