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

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

17、下面代码的输出结果是()。 a = "ac" b = "bd" c = a + b print(c)

A.abcd

B.bdac

C.acbd

D.dbac


参考答案和解析
A
更多 “17、下面代码的输出结果是()。 a = "ac" b = "bd" c = a + b print(c)A.abcdB.bdacC.acbdD.dbac” 相关考题
考题 下面程序的输出结果是。score80ifscore60print成绩为dscore,end,print不及格() A、成绩为80,不及格B、成绩为80C、不及格D、无输出

考题 下列程序的输出结果是 ( )#includeusing namespace std;class A{int apublic:A():a(9){}virtual void print() const {cout};class B:public A{char b;public:B(){b= ‘S’;}void print()const{cout};void show(AaX){X,print()}int main(){ Ad1;*p;Bd2;p=d2;d1,print();d2,print();p-print();show(d1);show(d2);return 0;}

考题 以下代码段的输出结果是()Strings=Java World;System.out.print(s.index Of(a,4));A.-1B.OC.1D.4

考题 已有变量定义和函数调用语句:int a=25;print_value(a);下面函数的正确输出结果是void print_value(int *x){printf("%d\n",++*x);}A.23B.24C.25D.26

考题 下面程序段的输出结果是【 】。For X=1.5 To 5 Step 1.5Print X;Next X

考题 执行下面程序后输出的正确结果是( )。 public class Test{ public static void main(String args[]){ System.out.print(100%3); System.out.print(","); System.out.print(100%0); } }A.1,1B.1,1.0C.1.0, lD.1.0,1.0

考题 有以下程序main(){ char a='a',b;print("%c,",++a);printf("%c\n",b=a++);}程序运行后的输出结果是A.b,bB.b,cC.a,bD.a,c

考题 下列代码运行后输出结果是Defstr B-EPrivate Sub Command1_Click()B$="123"C="456"Print B+C$End 下列代码运行后输出结果是 Defstr B-E Private Sub Command1_Click() B$="123" C="456" Print B+C$ End SubA.123456B.123456C.123+"456"D.显示出错信

考题 下面的程序代码输出的结果是多少?

考题 下面程序的输出结果是 ( ) char b[]="ABCD"; main() { char * chp; for ( chp=b; * chp;chp + =2 )printf("%s",chp); print{("\n"); }A.ABABCDB.ABCDABC.ABCDDD.ABCDCD

考题 下面程序的输出结果是()。includeClass example{int a;public:example(int B.{a=b++ 下面程序的输出结果是( )。 #include<iostream.h> Class example {int a; public: example(int B.{a=b++;} void print(){a=a+1 cout<<a<<““;} void print()const{cout<<a<<““;} }; void main() {example x(3); Const example y(2); x.print();A.2 2B.4 3C.4 2D.3 2

考题 下面程序的输出结果是 include class example {int a; public: example(int b) {a= 下面程序的输出结果是#include<iostream.h>class example{int a;public:example(int b) {a=b++;}void pnnt( ) {a=a+1;cout < < a < <" ";}void print( ) const{cout < < a < <" ";}};void main( ){example x(3) ;const example y(2) ;x.print( ) ;y.print( ) ;}A.2 2B.4 3C.4 2D.3 2

考题 下面代码的输出结果是多少?char var[10];int test(char var[]){return sizeof(var);};A.4SXB 下面代码的输出结果是多少?char var[10];int test(char var[]){return sizeof(var);};A.4B.9C.11D.10

考题 执行下面程序后输出的正确结果是( )。 publicclassTest{ publicstaticvoidmain(Stringargs[]){ bytex=3,y=4; longr=80L; System.out.print(r/y); System.out.print(","); System.out.print(x/y); } }A.20.0,1B.20.0,1.0C.20,0D.20,1.0

考题 下面程序的输出结果是includeclass example{ int a;public: example(int b) {a=b++ 下面程序的输出结果是 #include<iostream,h> class example { int a; public: example(int b) {a=b++;} void print( ){a=a+1;cout<<a<<"";} void print( )const{cout<<a<<"";} }; void main( ) { example X(3);A.22B.43C.42D.32

考题 下面程序的输出结果是 ( ) main( ) { char x=040; print{("%d\n",x=x<<1);}A.100B.160C.120D.64

考题 下面程序的输出结果是()。includeusing namespace std;void main(){char cl='a',c2='c 下面程序的输出结果是( )。 #include<iostream> using namespace std; void main() { char cl='a',c2='c'; cout.put('a').put('c').put('\n'); cout.put(c1).put(c2); }A.ac a cB.ac acC.a c ac cD.a c

考题 下面程序的输出结果是includeclass example{ int a;public: example(int b){a=b++; 下面程序的输出结果是 #include<iostream.h> class example { int a; public: example(int b){a=b++;} void print(){a=a+1; cout<<a<<" ";} void print()const{cout<<a<<" ";} }; void main() { example x(3); const example y(2); x.print(); y.print(); }A.2 2B.4 3C.4 2D.3 2

考题 给定以下JAVA代码,这段代码编译运行后输出的结果是( )publicclassTest{publicstaticintaMethod(inti)throwsException{try{returni/10;}catch(Exceptionex){thrownewException("exceptioninaaMothod");}finally{System.out.print("finally");}}publicstaticvoidmain(String[]args){try{aMethod(0);}catch(Exceptionex){System.out.print("exceptioninmain");}System.out.print("finished");}}A、finallyexceptioninmainfinishedB、exceptioninmainfinallyC、finallyfinishedD、finallyexceptioninmainfinished

考题 下面程序段的输出结果是:int a = 2;System.out.print( a++);System.out.print( a);System.out.print(++a); A.333B.334C.234D.233

考题 语句Print chr(65)的输出结果是() A.aB.AC.65D.chr(65)

考题 以下代码的输出结果是() while(1) { $var++; $result=$var; if($result==17)break; $var--; } echo($result);A、0B、17C、18D、这是一个无限循环,没有输出

考题 已知’E’的ASCII码是69,则执行下面C语句的结果是()printf(〞%c〞,’D’-‘8’+’5’);A、66B、AC、BD、E

考题 分析下面的代码:varx=[’Hello’];document.write(x[1])输出结果是undefined。()

考题 以下程序段的输出结果是()(□表示空格) Print"a";Tab(3);"b"A、a□bB、□a□□□□bC、a□□□bD、a□□b

考题 下面语句的输出结果是()。x=10:y=3Print(x*y)/8A、5B、6C、3D、4

考题 单选题下面语句的输出结果是()。x=10:y=3Print(x*y)/8A 5B 6C 3D 4

考题 单选题以下代码的输出结果是() while(1) { $var++; $result=$var; if($result==17)break; $var--; } echo($result);A 0B 17C 18D 这是一个无限循环,没有输出