⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ch8ex91.java

📁 JAVA程序设计 丁岳伟 彭敦陆编 高等教育出版社 第7---11章程序
💻 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 + -