📄 mathapplet.java
字号:
/**
* MathApplet.java
*/
package sample;
import java.applet.Applet;
public class MathApplet extends java.applet.Applet {
/** Initialization method that will be called after the applet is loaded
* into the browser.
*/
public void init() {
setVisible(false);
}
public double add(double d1, double d2){
return d1 + d2;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -