📄 exercise16_8.java
字号:
import java.io.*;public class Exercise16_8 { public static void main(String[] args) throws IOException { DataOutputStream output = new DataOutputStream(new FileOutputStream("Exercise16_8.dat", true)); for (int i = 0; i < 100; i++) output.writeInt((int)(Math.random() * 100000)); output.close(); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -