Java Float Number Round round(float input)

Here you can find the source of round(float input)

Description

round

License

Open Source License

Declaration

static public int round(float input) 

Method Source Code

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

public class Main {
    static public int round(float input) {
        return Math.round(input);
    }//from ww  w .  ja  va2s  .  c o  m
}

Related

  1. round(float d)
  2. round(float f, int dp)
  3. round(float f, int i)
  4. round(float f, int n)
  5. round(float input)
  6. round(float number, int fractionalPartSize)
  7. round(float pX)
  8. round(float Rval, int Rpl)
  9. round(float Rval, int Rpl)