All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.frogif.calculator.number.impl.NumberConstant Maven / Gradle / Ivy

package io.github.frogif.calculator.number.impl;

public class NumberConstant {

    private NumberConstant(){
        // do nothing
    }

    /**
     * 使用科学计数法表示的阈值, 整数部分如果超出这个长度, 则整体使用科学计数法进行表示
     */
    public static final int SCIENTIFIC_THRESHOLD = 1000;

    /**
     * 
     */
    public static final char SCIENTIFIC_MARK = 'E';

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy