执行“cout.<<char(‘F’,-2)<<end 1;”语句后得到的输出结果为【 】。
第1题:
执行“printf(”%C",’F’一2);”语句后得到的输出结果为_____。
第2题:
执行下列语句后,输出结果为steven的是
char*str="steven";
eout.write(str, );
A.strlen(str)
B.sizeof(str)
C.strlen(str+1)
D.sizeof(str-1)
第3题:
当执行下面两个语句后,输出的结果为 ( ) char cl=97,c2=98; printf("%d%c",c1,c2);
A.97 98
B.97 b
C.a 98
D.a b
第4题:
下列程序的输出结果为 #include<iostream.h> void main( ) { char * a[ ]={"hello","the","world"}; char * * pa=a; pa++; cout <<*pa<<end1; }
A.hello
B.the
C.world
D.hellotheworld
第5题:
执行下列语句后,输出结果为steven的是 Char * str="steven"; cout. write(str, );
A.strlen(str)
B.sizeof(str)
C.strlen(str+1)
D.sizeof(str-1)
第6题:
执行下列语句后,输出结果为cout. put('s');cout<<,'c'<<'a';
A.ca
B.sca
C.s
D.a
第7题:
有下列程序段: #include <iostream> using namespace std; int main() { char b[] = "Hello,you"; b[5] = 0; cout<<b<<end1; return 0; } 执行此程序后,得到的输出结果是( )。
A.Hello,you
B.Hello0you
C.Hello
D.0
第8题:
执行"int x=45, y=13; printf("%d",x/y);"语句序列后得到的输出结果为()。
3
略
第9题:
执行“printf("%c",’F’-2);”语句后得到的输出结果为H。()
A对
B错
第10题:
执行“int=45,y=13;printf(“%d”,x/y);”语句序列后得到的输出结果为()。
3
略
第11题:
第12题:
对
错
第13题:
下面程序执行后,输出结果为:true请在程序的每条横线处填写一个语句,使程序的功能完整。
注意:请勿改动main()主方法和其他已有的语句内容,仅在横线处填入适当的语句。
public class TestStringCompare{
{public static void main(String ____________________ args)
{char charl[]={'t','e','s','t'};
char char2[]={'t','e','s','t','1'};
String str1=new String(___________________);
String str2=new String(char2,0,4);
System.out.println(__________________________);
}
}
第14题:
已知a的ASCⅡ码为97,执行下面两个语句后,输出的结果为______。 char c1=97;c2=98; printf("%d%c",c1,c2);
A.97 98
B.97 b
C.a 98
D.a b
第15题:
下列程序的输出结果为【 】。
include <iostream. h>
void main()
{
char a[]="abcdabcabfgacd";
int i1=0,i2=0,i=0;
while (a[i])
{
if (a[i]=='a') i1++;
if (a[i]=='q') i2++;
i++;
}
cout<<i1<<''<<i2<<end1;
}
第16题:
下列程序的输出结果为 #include<iostream.h> void main() { char*a[]={"hello","the","world"}; char**pa=a; pa++; cout<<*pa<<end1; }
A.hello
B.the
C.world
D.hello the world
第17题:
以下程序运行后的输出结果是【 】。
include<iostream.h>
void main(){
char s[]=“123456”,*p;
for(p=s; p<s+2; p++)
cout<<p<<end1;
}
第18题:
执行下列程序语句后,输出结果为( )。 #inelude<iostream> using namespace std; int m=5; int main() { int m=3; m++; ::m++; cout<<m<<end1; return 0; }
A.3
B.4
C.5
D.6
第19题:
设char str1[11]="HELLO,",str2[10]=“world”;则执行语句 cout<<strlen(strcpy(str1,str2)));后的输出结果是 ______。
A.12
B.11
C.7
D.5
第20题:
执行“printf("%c",’A’+2);”语句后得到的输出结果为()。
C
略
第21题:
执行“printf("%s%s%d","wei","rong",18);”语句后得到的输出结果为()。
weirong18
略
第22题:
c
b
a
d
第23题: