📄 sample7_3.java
字号:
//引如System类下所有的静态成员,包括方法和成员变量
import static java.lang.System.*;
//引入Math类下的sqrt方法
import static java.lang.Math.sqrt;
class Sample7_3
{
public static void main(String[] args)
{
out.println("这样也可以简单的使用打印功能!!!");
out.println("123.44的平方根为:"+sqrt(123.44));
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -