Java Divisor maxLiteralLengthDivision(int n)

Here you can find the source of maxLiteralLengthDivision(int n)

Description

Calculates the division by 31

License

Apache License

Parameter

Parameter Description
n number to divide

Return

n / 31

Declaration

public static int maxLiteralLengthDivision(int n) 

Method Source Code

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

public class Main {
    /**/*from   w w w. j  ava  2s .co  m*/
     * Calculates the division by 31
     *
     * @param n number to divide
     *
     * @return <code>n / 31</code>
     */
    public static int maxLiteralLengthDivision(int n) {
        return n / 31;
    }
}

Related

  1. maxCommonDivisor(int m, int n)
  2. maxCommonDivisor(int num1, int num2)
  3. maxCommonDivisorCore(int num1, int num2)
  4. maxDivisibleNumber(float yourDividend, float divisor)