📄 simplecaculator.java
字号:
package psp0_1;
/**
* the interface of the caculation
* @author qian
* 2006 9/12
*/
public interface SimpleCaculator {
/**
* add a double to the dataStructure
* @param num
*/
public void addNum(double num);
/**
* clear the data in the dataStructrue
*
*/
public void clearFigure();
/**
* get the mean of the data
* @return
*/
public double getMean();
/**
* get the deviation of the data
* @return
*/
public double getDeviation();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -