下列程序的功能是将一个整数数组写入二进制文件,在程序的下划线处应填入的选项是( )。 importjava.io.*; publicclassXieShuzu{ publicstaticvoidmain(String[]a){ int[]myArray=(10,20,30,40); try{ DataOutputStreamdos= newDataOu中utStream(new FileOutputStream("ints.dat")); for(inti=O;i<myArray.length;i++) dos.______(myArray[]); dos.close(); System.out.println("已经将整数数组写入二进制文件:ints.dat"): }catch(IOExceptionioe) {System.out.println("IOExcepr_on");} } }
A.writeArray
B.writeByte
C.writeInt
D.writeDouble
第1题:
有以下程序:
若要按以下形式输出数组右上半三角
则在程序下划线处应填入的是( )。
A.i-1
B.i
C.i+1
D.4-i
第2题:
下列给定程序中,函数fun的功能是:从形参SS所指字符串数组中,删除所有串长超过k的字符串,函数 返回剩余字符串的个数。ss所指字符串数组中共有N个字符串,且串长小于M。
请在程序的下划线处填入正确的内容并将下划线删除,使程序得出正确的结果。注意:部分源程序在文件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中。
不得增行或删行,也不得更改程序的结构!include<;stdi0.h>;
unsigned long fun(unsigned long n){unsigned long x=0;int t;
第5题:
下列程序的功能是将一个整数数组写入二进制文件,在程序的下画线处应填入的选项是( )。 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