📄 op3test.java
字号:
import java.io.*; //import语句用于加载类库
import mp.Op3;
public class Op3test
{
public static void main(String[] args) throws IOException
{
int f=Op3.intValue();
System.out.println("2*f="+2*f);
float ff=Op3.floatValue();
System.out.println("2*ff="+2*ff);
String s=Op3.stringValue();
System.out.println("输入的串为:"+s);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -