📄 ch2ex16.java
字号:
public class ch2ex16{
public static void main(String[]args){
double c;
c=Math.random();
System.out.print("Random value=");
System.out.println(c);
int x;
//Convert to integer value
x=(int)(c*1000000)%50;
System.out.print("Random value in the range 0...49=");
System.out.println(x);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -