更多"[单选题]阅读下面程序,则程序段的功能是( )。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
[简答题]完成下面输出字符串“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