org.unlaxer.tinyexpression.CalculatorTest Maven / Gradle / Ivy
package org.unlaxer.tinyexpression;
import org.junit.Test;
public class CalculatorTest {
@Test
public void test(){
// "1+9*1.67/2.1+((73.1-2/98.45)*14.1)"
}
public static void main(String[] args) {
System.out.println(1+9*1.67/2.1+((73.1-2/98.45)*14.1));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy