更多"执行语句序列
int x=10,&r=X;
cout<<x<<"的相关试题:
[填空题]执行语句序列
int x=10,&r=x;
cout<<x<<’-’<<r<<endl;
输出结果为______。
[填空题]执行语句序列:
int x=10,&r=x;
cout<<x<<’.’<<r<<endl;
输出结果为______。
[填空题]执行语句序列
int x=10,&r=X;
cout<<x<<’-’,<<r<<endl;
输出结果为 【9】 。
[填空题]执行语句序列:
int x=10,&r=x;
cout<<x<<’.’<<r<<endl;
输出结果为______。
[填空题]在执行语句序列:
int i=0;
do i++;
while(i*i<10);
时,do后面的循环体语句i++被执行的次数为______。
[填空题]执行"cout<<char(’F’-2)<<endl;"语句后得到的输出结果后______。
[填空题]执行”cout<<char(’A’+2)<<endl;”语句后得到的输出结果为______。
[填空题]执行语句序列:
int x=10, &r=x;
cout<<x<<’-’<<r<<end1;
输出结果为 【8】 。
[填空题]执行语句序列:
int x=10, &r=x;
cout<<x<<’-’<<r<<end1;
输出结果为 【8】 。
[填空题]执行语句序列“int k=0; do k++; while(k*k<20);”后,k的值为______。
[填空题]执行语句序列
char strl[10]="ABCD",str2[10]="XYZxyz";
for (int i=0; strl[i]=str2[i]; i++)
后,数组str1中的字符是XYZxyz,数组str2中的字符串是 【6】 。