题目详情
当前位置:首页 > 职业培训考试
题目详情:
发布时间:2023-11-29 01:16:15

[单选题]阅读下面程序,则程序段的功能是( )。
Int main()
{ int c[]={23,1,56,234,7,0,34},i,j,t;
for(i=1;i<7;i++)
{ t=c[i]; j=i-1;
while(j>=0 && t>c[j])
{ c[j+1]=c[j]; j--; }
c[j+1]=t;
}
for(i=0;i<7;i++)
cout << c[i] ;
cout << endl;
}
A. 对数组元素的升序排列
B. 对数组元素的降序排列
C. 对数组元素的倒序排列
D. 对数组元素的随机排列

更多"[单选题]阅读下面程序,则程序段的功能是( )。Int main(){"的相关试题:

[单选题]现有如下程序段
Int main()
{ int k[30]={12,324,45,6,768,98,21,34,453,456};
int count=0,i=0;
while(k[i])
{ if(k[i]%2==0||k[i]%5==0)
count++;
i++;
}
cout < return 0;
}
则程序段的输出结果为( )。
A. 7,8
B. 8,8
C. 7,10
D. 8,10
[单选题]有如下程序段:
Int i=4; int j=1;
Int main(){
int i=8,j=i;
cout<}
运行时的输出结果是( )。
A. 44
B. 41
C. 88
D. 81
[简答题]下面程序段是求出数组arr的两条对角线上元素之和,请填空。
Int main()
{
int arr[3][3]={2,3,4,8,3,2,7,9,8},a=0,b=0,i,j;
 for(i=0;i<3;i++)
  for(j=0;j<3;j++)
   if( )
  a=a+arr[i][j];
for(i=0;i<3;i++)
  for( j=2; j>=0; j--)
  if( )
  b=b+ arr[i][j];
 cout << a << " " << b;
return 0; 
}
[单选题]有如下程序段:
Int main(){

while(getchar()!='\n')

}
以下叙述中正确的是( )。
A. 此while语句将无限循环
B. getchar()不可以出现在while语句的条件表达式中
C. 当执行此while语句时,只有按回车键程序才能继续执行
D. 当执行此while语句时,按任意键程序就能继续执行
[简答题]以下程序段的输出结果是 。
Int main()
{ char s[]= "abcdefg";
s[3] ='\0';
cout << s;
return 0;
}
[单选题]以下程序段运行后的输出结果是( )。
Int main()
{ char str[][9]={"hello", "student", "computer"};
cout << str[1];
return 0;
}
A. h
B. hello
C. student
D. computer
[简答题]下面程序的功能是输出数组s中最大元素的下标,请填空。
Int main( )
{ int k, p,s[]={1, -9, 7, 2, -10, 3};
for ( p=0, k =p; p< 6; p++)
if (s[p]>s[k]) ; //注意:不要在运算符前后加空格
cout << k;
return 0;
}
[单选题]有以下程序段   #include   main()   { …   while( getchar()!='\n');   …   }   以下叙述中正确的是( )。
A.此while语句将无限循环
B.getchar()不可以出现在while语句的条件表达式中
C.当执行此while语句时,只有按回车键程序才能继续执行
D.当执行此while语句时,按任意键程序就能继续执行
[单选题]阅读下面代码,输出结果为() int main() { char str1[] = "abc"; char str2[] = "abc"; const char str3[] = "abc"; const char str4[] = "abc"; const char *str5 = "abc"; const char *str6 = "abc"; cout<A. true false true
B. false true true
C. false false false
D. false false true
[单选题]下面代码的输出结果为 int func(int x) { int countx =0; while(x) { countx ++; x = x&(x-1); } return countx; } int main() { cout<A.255
B.8
C.12
D.6
[单选题]下面程序输出的结果是( )。
Int main()
{ int i;
int a[3][3]={1,2,3,4,5,6,7,8,9};
for(i=0;i<3;i++)
cout < return 0;
}
A. 1 5 9
B. 7 5 3
C. 3 5 7
D. 5 9 1
[简答题]完成下面输出字符串“world”的程序。
Int main( )
{ int i,j;
char c[]="hello world";
for(i=0;i<5;i++)
{ ;
cout << c[j];
}
return 0;
}
[单选题]下面的代码段中,执行之后i 和j 的值是什么? ( )
Int i = 1;
Int j;
J = i++*2+3*--i;
A.1, 2
B.1, 5
C.2, 1
D.2, 2
[单选题]阅读下列代码 public class Person{ static int arr[ ] = new int[10]; public static void main (String[] args) { System.out.println(arr[9]); } } 该代码运行的结果是:
A.编译时将产生错误
B.编译时正确,运行时将产生错误
C.输出0
D.输出空
[单选题]已知函数fun的原型为:int fun(int,int,int);下列重载函数原型中错误的是( )。
A. char fun(int,int);
B. double fun(int,int,double);
C. int fun(int,clar*);
D. float fun(int,int,int);
[单选题]已知程序中已经定义了函数test,其原型是int test(int,int,int);,则下列重载形式中正确的是( )。
A. char test(int,int,int);
B. double test(int,int,double);
C. int test(int,int,int=0);
D. float test(int,int,float=3.5F);
[单选题]给出下面代码:
Public class Person{
Static int arr[] = new int[10];
Public static void main(String a[])
{
System.out.println(arr[1]);
}
}
哪个语句是正确的? ( )
A.编译时将产生错误;
B.输出零;
C.编译时正确,运行时将产生错误;
D.输出空。
[单选题]阅读下马代码,运行结果为() class cls { public: int mi ; cls(int i):mi(i) { mi = i; cout<A.1
B.2
C.3
D.未知
[单选题]下列代码的执行结果是: int numbers[]=new int[6]; for(int i=1;iA.0 1 2 3 4 5
B.1 2 3 4 5 6
C.0 1 2 3 4
D.1 2 3 4 5

我来回答:

购买搜题卡查看答案
[会员特权] 开通VIP, 查看 全部题目答案
[会员特权] 享免全部广告特权
推荐91天
¥36.8
¥80元
31天
¥20.8
¥40元
365天
¥88.8
¥188元
请选择支付方式
  • 微信支付
  • 支付宝支付
点击支付即表示同意并接受了《购买须知》
立即支付 系统将自动为您注册账号
请使用微信扫码支付

订单号:

截图扫码使用小程序[完全免费查看答案]
请不要关闭本页面,支付完成后请点击【支付完成】按钮
恭喜您,购买搜题卡成功
重要提示:请拍照或截图保存账号密码!
我要搜题网官网:https://www.woyaosouti.com
我已记住账号密码