没有搜到到结果?点击这里求解答/求资源。
【单选题】
以下程序运行后,屏幕输出结果是()。charstr[80];strcpy(str,"computer");printf("%d",strlen(str));

7
8
9
10
【单选题】
请阅读以下程序#includemain){floata,bscanf%f,ifa<10.0)b=1.0/x;elseifa<0.5)&&a!=2.0))b=1.0/a十2.0);elseifa<10.0)b=1.0/x;elseb=10.0;printf%f\n,y);}若运行时输入2.0回车),则上面程序输出结果是:

0.000000
0.500000
1.000000
0.250000
【单选题】
运行下面程序时,会产生什么异常?( ) public class X7_1_4 { public static void main(String[] args) { int x = 0; int y = 5/x; int[] z = { 1,2,3,4 } ; int p = z[4]; } }

ArithmeticException
NumberFormatException
ArrayIndexOutOfBoundsException
IOException
【单选题】
运行下面程序时,会产生什么异常?( ) public class X7_1_5 { public static void main(String[] args) { int[] z = { 1,2,3,4 } ; int p = z[4]; int x = 0; int y = 5/x; } }

ArithmeticException
NumberFormatException
ArrayIndexOutOfBoundsException
IOException
【单选题】
以下程序输出结果是()。 main( ) { int b[3][3]={0,1,2,0,1,2,0,1,2},i,j,t=0; for(i=0;i for(j=i;j t=t+b[i][b[j][j]]; printf(%d\n,t); }

3
4
1
9
【单选题】
下列程序输出结果是()。 #include fun(int *a,int *b) {int *w;*a=*a+*a;*w=*a; *a=*b; *b=*w;} main( ) {int x=9,y=5,*px=fun(px,py);printf(%d, %d\n,x,y);}

出错
18,5
5,9
5,18
【单选题】
下列程序段执行后结果是( )。 String s = new String(abcdefg); for (int i=0; i<s.length(); i+=2){ System.out.print(s.charAt(i)); }

aceg
ACEG
abcdefg
abcd
【单选题】
程序段char a[ ]=“English”; char *p=a; int n=0; while( *p!=‘\0’){ n++; p++;} 结果中,n( )。

A. 6
B.8
C.5
D.7
【单选题】
以下程序运行结果是:( ) public class Increment{ public static void main(String args[]){ int c; c = 2; System.out.println(@@; System.out.println(c++); System.out.println(@@; } }

2 2 2
2 3 3
2 2 3
3 4 4
【单选题】
以下程序输出结果是()。 int x=3; main( ) int i; for(i=1;i<x;i++)incre( );incre( ) staic int x=1; x*=x+1; printf( %d, x);

25
26
27
28