⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 simplecaculator.java

📁 PSP实践第一个练习
💻 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 + -