simpletest.java
来自「这个是一个计算表达式的java包」· Java 代码 · 共 18 行
JAVA
18 行
package org.nfunk.jepexamples;
import org.nfunk.jep.*;
/**
* A seven line program for testing whether the JEP library can be found
* by the compiler and at run-time.<br>
* Upon successful compilation and running of the program, the program should
* print out one line: "1+2 = 3.0"
*/
public class SimpleTest {
public static void main(String args[]) {
JEP myParser = new JEP();
myParser.parseExpression("1+2");
System.out.println("1+2 = " + myParser.getValue());
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?