calculator.java

来自「编译原理」· Java 代码 · 共 34 行

JAVA
34
字号
/** * @Copyright(C) 2008 Software Engineering Laboratory (SELAB), Department of Computer  * Science, SUN YAT-SEN UNIVERSITY. All rights reserved.**/
package parser;

import exceptions.*;

/**
 * Main program of the expression based calculator ExprEval
 * 
 * @author [PENDING your name]
 * @version 1.00 (Last update: [PENDING the last update])
**/
public class Calculator
{
	/**
	 * The main program of the parser. You should substitute the body of this method 
	 * with your experiment result. 
	 * 
	 * @param expression  user input to the calculator from GUI. 
	 * @return  if the expression is well-formed, return the evaluation result of it. 
	 * @throws ExpressionException  if the expression has error, a corresponding 
	 *                              exception will be raised. 
	**/
	public double calculate(String expression) throws ExpressionException
	{
		// You should substitute this method body ...
		double result = ((int) (Math.random() * 1000000000)) / 100.0;
		return result;
	}
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?