下列程序的功能是将一个整数数组写入二进制文件,在程序的下画线处应填人的选项是( )。
A.writeArray
B.writeByte
C.writeInt
D.writeDouble
第1题:
下列程序的功能是将一个整数数组写入二进制文件,在程序的下画线处应填入的选项是( )。 importjava.io.*; public class XieShuzu{ Dublic static void main(String[]a){ Int[]myArray=(10,20,30,40); try{ DataOutputStream dos= new DataOutputStream(new FileOutput Stream("ints.dat")); for(int i=0:i<myArray.length;i++) dos. (myArray[i]); dos.close; System.out.println("已经将整数数组写入二进制文件:ints.dat"); }catch(IOException ioe) {System.out.println("IO Excepr_on");} } }
A.writeArray
B.writeByte
C.writeInt
D.writeDouble
第2题:
给定程序中,函数fun的功能是:调用随机函数产生20个互不相同的整数放在形参a所指数组中(此数组在主函数中已置O)。
请在程序的下画线处填入正确的内容并把下画线删除,使程序得出正确的结果。
注意:部分源程序在文件BLANKl.C中。
不得增行或删行,也不得更改程序的结构!
试题程序:
第3题:
( 20 ) 下列程序的功能是将一个整数数组写入二进制文件 。 在程序的下划线处应填入的选项是
import java.io.*;
public class XieShuzu{
public static void main(String[] a){
int [] myArray={10,20,30,40};
try{
DataOutputStream dos=
new DataOutputStream(new FileOutputStream( " ints.dat " ));
for(int i=0;i<myArray.lenth;i++)
dos. _______(myArray[i]);
dos.close();
System.out.println( " 已 经 将 整 数 数 组 写 入 二 进 制 文 件 :
ints.dat " );
}catch(IOException ioe)
{System.out.println( " IO Exception " );}
}
}
A ) writeArray
B ) writeByte
C ) writeInt
D ) writeDouble
第4题:
下列给定程序中,函数fun的功能是:将形参n中,各位上为偶数的数取出,并按原来从高位到低位相反的顺序组成一个新数,作为函数值返回。 例如,输入一个整数27638496,函数返回值为64862。 请在下画线处填入正确的内容并将下画线删除,使程序得出正确的结果。 注意:部分源程序在文件BLANKl.C中。 不得增行或删行,也不得更改程序的结构!
第5题:
在程序的下面线处应填人的选项是( )。
A.implements Runnable
B.extends Thread
C.implements Thread
D.extends Runnable