📄 staticimportexample2.java
字号:
package java2.F;
import static java.lang.System.out;
import static java.lang.Math.*;
public class StaticImportExample2
{
public static void main(String[] args)
{
out.println("5's sqrt root is "+sqrt(5));
out.println("log 2 is "+log(2));
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -