Here you can find the source of maxLiteralLengthDivision(int n)
Parameter | Description |
---|---|
n | number to divide |
n / 31
public static int maxLiteralLengthDivision(int n)
//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; } }