問題詳情
4. doubt
(A)amount
(B)trouble
(C)shoulder
(D)group
(A)amount
(B)trouble
(C)shoulder
(D)group
參考答案
答案:A
難度:適中0.5
統計:A(0),B(0),C(0),D(0),E(0)
內容推薦
- 27)下面程序的文件名为t.exe,在DOS下输入的命令行参数为:t to meet me则程序输出的结果是#include "stdio.h"main(argc,arg
- twice(A)machine (B)invite (C)terrible (D)bitter
- 34)设有定义:char p[]={′1′,′2′,′3′},*q=p;,以下不能计算出一个char型数据所占字节数的表达式是(A)sizeof(p) (B)sizeof(char) (C)
- 26)下列程序是用来判断数组中特定元素的位置所在的。#include #include int fun(int *s, int t, int *k){ int i;*k=0;for(i=0;
- 25)已知字符′A′的ASCII码值是65,字符变量cl的值是′A′,c2 的值是′D′。执行语句printf("%d,%d",c1,c2-2);后,输出结果是(A)A,
- 草花種植完成後,下列何者錯誤?(A)需馬上澆水(B)需馬上施尿素肥(C)根球裸露部分填補土方(D)草花周邊土方整平
- 24)有以下程序#include main(){ int i,j,m=55;for(i=1;i<=3;i++)for(j=3;j<=i;j++)m=m%j;printf(&quo
- 23)若有以下程序#include int a[]={2,4,6,8};main(){ int i;int *p=a;for(i=0;i<4;i++)a[i]=*p;printf(&q
- 14)若函数调用时的实参为变量时,以下关于函数形参和实参的叙述中正确的是(A)函数的实参和其对应的形参共占同一存储单元 (B)形参只是形式上的存在,不占用具体存储单元(C)同名的实参和形参占
- 22)现有如下程序段#include "stdio.h"main(){ int k[30]={12,324,45,6,768,98,21,34,453,456};int
內容推薦
- I walked up to the top of the hill with my feiend, we enjoyed a splendid view of the lake(A)which
- north(A)thunder (B)worthy (C)neither (D)clothes
- 29)以下叙述中错误的是(A)改变函数形参的值,不会改变对应实参的值 (B)函数可以返回地址值(C)可以给指针变量赋一个整数作为地址值 (D)当在程序的开头包含头文件stdio.h时,可以给
- It is not how much we do but how much love we put into what we do______benefits our work most.(A)
- 39)下列程序的输出结果是#include "stdio.h"#define M(x,y) x%ymain(){ int a,m=12,n=100;a=M(n,m);pr
- His first novel good reviews since it came out last month.(A)receives (B)is receviing (C)will rec
- (A) What are you up to this weeked?(B)Don’t mention it.(C)Any other suggestions? (D)Anything I can d
- 30)下面程序的输出结果是#includemain(){ int a[]={1,2,3,4,5,6,7,8,9,0},*p;p=a;printf("%dn",*p+9);
- 4)下面关于对象概念的描述中,错误的是(A)对象就是C语言中的结构体变量 (B)对象代表着正在创建的系统中的一个实体(C)对象是一个状态和操作(或方法)的封装体 (D)对象之间的信息传递是通
- 40)假定当前盘符下有两个如下文本文件:文件名 atxt atxt内容 123# 321#则下面程序段执行后的结果为#include "stdio.h"void
- As is know to all, People’s Republic of China is Biggest developing countryin the world(A)the ;不填
- 人體內最大的神經是 (1) 股神經 (2) 坐骨神經 (3) 橈神經 (4) 肋間神經。(A)2(B)4(C)3(D)1
- 35)有以下函数int aaa(char *s){ char *t=s;while(*t++);t--;return(t-s);}以下关于aaa函数的功能的叙述正确的是(A)求字符串s的长度
- 31)有下面程序段#include "stdio.h"#include "string.h"main(){ char a[3][20]={{"
- —Will you read me a story ,Mummy?--OK.You________have one if you go to bed as soon as possible.(A
- __________________all of them are strong candidates, only one will be chosen for the post.(A)Sinc
- 37)下列选项中错误的说明语句是(A)char a[]={′t′,′o′,′y′,′o′,′u′,′′}; (B)char a[]={"toyou"};(C)char a
- 1)一、选择题在下列各题的A)、B)、C)、D)四个选项中,只有一个选项是正确的,请将正确的选项涂写在答题卡相应位置上,答在试卷上不得分。算法的空间复杂度是指(A)算法程序的长度 (B)算法
- Some insects________the colour of their surroundings to protect themselves.(A)take in (B)take off
- Claire had luggage an hour befor her plane left.(A)check (B)checking (C)to check (D)checked
- 32)若有定义: char *st= "how are you "; ,下列程序段中正确的是(A)char a[11], *p; strcpy(p=a+1,&st[4])
- 7 If it’s fine, we’ll go camping. Would you like to join us?Cathy: I’d like to, but the deadline
- 第四节 完形填空(共20小题:每小题5分,满分30分)阅读下面短文,从短文后各题的ABCD四个选项中,选出合适填入对应空白处的最佳选项,并在答题卡上将该选项涂黑。In a land far awa
- 38)以下程序的输出结果是int f(){ static int i=0;int s=1;s+=i; i++;return s; }main(){ int i,a=0;for(i=0;i&l
- 33)有以下程序#include int fun(char s[]){ int n=0;while(*s=′0′) {n=10*n+*s-′0′;s++;}return(n);}main()