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

📄 ch8ex81.java

📁 JAVA程序设计 丁岳伟 彭敦陆编 高等教育出版社 第7---11章程序
💻 JAVA
字号:
import java.io.*;
public class ch8ex81{
	public static void main(String[]args){
		try{
			DataOutputStream fout=new DataOutputStream(new FileOutputStream("ch8ex8.dat"));
			for(int j=0;j<10;j++){
				fout.writeInt(j);
				fout.writeChar((char)(j+65));
				fout.writeDouble(j*12.5);
				fout.writeBoolean(true);
				fout.writeUTF("The example for DataOutputStream class");
			}
			fout.close();
		}catch(Exception e){
			e.printStackTrace();
		}
	}
}		

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -