📄 ch8ex91.java
字号:
import java.io.*;
public class ch8ex91{
public static void main(String[]args){
int x;
try{
DataOutputStream fout=new DataOutputStream(new FileOutputStream("grades.dat"));
for(int j=0;j<150;j++){
x=(int)(Math.random()*1000000)%100;
fout.writeInt(x);
}
fout.close();
}catch(Exception e){
e.printStackTrace();
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -