网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

有如下程序段:int a = b = 5;String s1 = "祝你今天考出好成绩!";String s2 = s1; 则表达式a == b与s2 == s1的结果分别是()

  • A、true与true
  • B、false与true
  • C、true与false
  • D、false与false

参考答案

更多 “有如下程序段:int a = b = 5;String s1 = "祝你今天考出好成绩!";String s2 = s1; 则表达式a == b与s2 == s1的结果分别是()A、true与trueB、false与trueC、true与falseD、false与false” 相关考题
考题 设有如下一段程序: int *var,a; a=100; var= a=*var+10; 执行上面的程序段后,a的值为() 。 A.120B. 110C. 100D. 90

考题 有如下程序段int *p,a=10,b=1;p=a; a=*p+b;执行该程序段后,a的值为A.12B.11C.10D.编译出错

考题 ( 20 )有如下程序段int i =0, j=1;int & r=i ; // ①r =j; // ②int*p= & i ; // ③*p= & r ; // ④基中会产生编译错误的语句是A ) ④B ) ③C ) ②D ) ①

考题 ( 18 )有如下程序段:Tnt i=4;int j=l;int main () {int i=8 , j=i;coutijendl;}运行时的输出结果是A ) 44B ) 41C ) 88D ) 81

考题 ( 19 )有如下程序段:int i=5;while ( int i=0 ) {cout 《 '*';i--;}运行时输出 "*" 的个数是A ) 0B ) 1C ) 5D )无穷

考题 ( 6 )有如下程序段:int x=1,Y=2,z=3;x=x^z;y=y^z;z=x^y;coutxyz;执行这个程序段的输出是【 6 】 。

考题 现有如下程序段,则程序段的输出结果为 【16】 。#include "stdio.h"int fun(){static int k;return k;}main(){int m;m=fun();printf("%d\n",m);}

考题 现有如下程序段#include "stdio.h"int fun(int k,int *m){if(k%3)*m=k*k;else *m=k/3;}main(){ int (*p)(int,int *),m;p=fun;(*p)(78, m);printf( "%d\n",m);}则程序段的输出结果为A.24B.25C.26D.27

考题 有如下程序段int i=0,j=1;int r=i; //①r=j; //②int*p=i; //③*p=r; //④其中会产生编译错误的语句是A.④B.③C.②D.①

考题 现有如下程序段#include "stdio.h"int aa(int x,int y);main(){int a=24,b=16,c;c=aa(a,b);printf("%d\n",c);}int aa(int x,int y){int w;while(y){w=x%y;x=y;y=w;}return x;}则程序段的输出结果是A.8B.7C.6D.5

考题 有如下程序段:int a=14,b=15,x;char c=A;x=(a&&b)&&(cB):执行该程序后,x的值为( )。A.trueB.falseC.0D.1

考题 有如下程序段: includedefine Max(a,b) a>b?a:bmain(){int a=5,b=6,c=4,d;d=c+Max(a, 有如下程序段: #include<stdio.h> #define Max(a,b) a>b?a:b main() { int a=5,b=6,c=4,d; d=c+Max(a,b); printf("%d",d); } 其输出结果为______。A.10B.5C.6D.编译错误

考题 执行如下程序段后,int sum的值为______。A.80B.160C.161D.200

考题 有如下程序段void func(int *a,int b[ ]){ b[0]=*a+6; }main(){ int a,b[5]={0}; a=0;b[0]=3; func(a,b); printf("%d\n",b[0]); }程序运行后输出的结果是A.6 B.7 C.8 D.9

考题 若有如下程序段: include using namespace std; int main() {char*p="abcdefgh",*r;l 若有如下程序段:include <iostream>using namespace std;int main(){char *p="abcdefgh",*r;long *q;q=(long *)p;q++;r=(char *)q;cout<<r<<end1;return 0;}该程序的输出结果是______。

考题 有如下程序段:int i=4;int J=1:int main(){int i=8,J=i;coutijendl;}运行时的输出结果是A.44B.41C.88D.81

考题 有如下程序段:int i=5;while(int i=0){cout‘*’;i--;}运行时输出“*”的个数是A.0B.1C.5D.无穷

考题 有如下程序段: int a=14,b=15,x; char c='A'; x=(ab)(c<'B'); 执行该程序段后,x的值为( )。A.tureB.假C.0D.1

考题 有如下程序段 #include void main( ) { int a=14,b=15,x; char c='A'; x=(ab) (c<'B') ; cout < < x;} 执行该程序段后,x的值为A.tureB.FALSEC.0D.1

考题 有如下程序段void fun(int *a, int *b){ int *k; k=a; a=b; b=k;}main(){ int a=3, b=6, *x= fun(x,y); printf("%d %d", a, b);} 程序运行后输出的结果是A.6 3 B.3 6 C.编译出错 D.0 0

考题 有如下程序段includevoid main(){int a=14,b=15,x;char c='A':x=(a 有如下程序段 include<iostream.h> void main() {int a=14,b=15,x; char c='A': x=(a b) (c<'B'=; cout<<x;= 执行该程序段后,x的值为A.tureB.FALSEC.0D.1

考题 如下程序段运行时的输出结果是 int i=4;int J=1; int main( ){ inti=8,j=i; cout<<i<<j<<endl; }A.44B.41C.88D.81

考题 有一段程序如下,请设计测试用例以满足语句覆盖要求。 void DoWork (int x,int y,int z) { int k=0,j=0; if ( (x>3) } //语句块2 j=j%3; //语句块3 }

考题 有如下程序段includevoid main(){int a=14,b=15,x;char c='A'x=(ab) 有如下程序段 include<iostream.h> void main() {int a=14,b=15,x; char c='A' x=(ab)(c<'B'=; cout<<x;= 执行该程序段后,x的值为A.tureB.假C.0D.1

考题 有如下程序段 int*p,a=10,b=3; p=a; a=*p+b;执行该程序段后,a的值为______。A.11B.12C.13D.14

考题 现有如下程序段#include "stdio.h"int *fun(int *a,int *b){int c;c=*a%*b;return c;}main(){int a=5,b=19,*c;c=fun(a,b);printf("%d\n",++*c);}则程序段执行后的结果为A.8B.7C.6D.5

考题 有如下程序段: int total = 0; for ( int i = 0; i  4; i++ ){ if ( i == 1) continue; if ( i == 2) break;total += i;} 则执行完该程序段后total的值为()A、0B、1C、3D、6

考题 单选题有如下程序段: int total = 0; for ( int i = 0; i  4; i++ ){ if ( i == 1) continue; if ( i == 2) break;total += i;} 则执行完该程序段后total的值为()A 0B 1C 3D 6