【判断题】More and more people will migrate
to shopping online versus in-store on Cyber Monday.
【单选题】子函数Fun的功能是比较形参变量x和y所指的内存单元中的数据大小,将两者中的 最小值 返回。以下程序执行后输出结果是 7,8,7 。按要求在空白处填写适当的表达式或语句,使程序完整并符合题目要求。
A.
第4行: *x 第12行: *p,*q 第15行: Fun(p,q)
B.
第4行: x 第12行: *p,*q 第15行: Fun(a,b)
C.
第4行: *x 第12行: p,q 第15行: Fun(&p,&q)
D.
第4行: x 第12行: *p,*q 第15行: Fun(*p,*q)
【简答题】写出以下程序段的运行结果 int main() { int a=2,b= -1,c=2; if(b<0) c=0; else c++; printf( "%d\n" ,c); return 0; } 执行后,输出结果是________ 。
【简答题】若有以下定义,请写出以下程序段中输出语句执行后的输出结果。 1、()2、()3、() int i=-200,j=2500; printf( "%d %d",i,j) ; printf ("i=%d,j=%d\n",i,j) ; printf ("i=%d\nj=%d\n",i,j) ;
【判断题】Cyber Monday is becoming one of the busiest online shopping days for deals and discounts in the US. ( )
【判断题】Prior to Black Friday, Cyber Monday is the start of the Christmas shopping season.
【单选题】写出执行以下程序后的输出结果。 #include void main(void) { int i = 0, j = 0, a = 6; if ((++i>0)||(++j>0)) a ++; printf(“i=%d, j=%d, a=%d\n”, i, j, a); }
【简答题】若有以下定义,请写出以下程序段中输出语句执行后的输出结果 。 int i=-200,j=2500; printf("(1)%d%d",i,j); printf("(2)i=%d,j=%d\n",i,j); printf("(3)i=%d\nj=%d\n",i,j);