📄 simpletest.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -