皮皮学,免费搜题
登录
搜题
【单选题】
下列关于土密度的大小排列,正确的是()。
A.
A
B.
B
C.
C
D.
D
拍照语音搜题,微信中搜索"皮皮学"使用
参考答案:
参考解析:
知识点:
.
..
皮皮学刷刷变学霸
举一反三
【单选题】有以下程序 #include void exch(int t[]) { t[0]=t[5]; } main( ) { int x[10]={1,2,3,4,5,6,7,8,9,10}, i=0; while(i<=4) { exch(&x[i]); i++; } for (i=0; i<5; i++) printf("%d ", x[i]); printf(" \n"); } 程序运...
A.
. 6 7 8 9 10
B.
. 1 3 5 7 9
C.
. 1 2 3 4 5
D.
. 2 4 6 8 10
【单选题】基极阶梯信号中, “串联电阻”的作用是( )
A.
限制基极电流
B.
保护晶体管
C.
把基极输入电压变化转变为电流变化
D.
把基极输入电流变化转变为电压变化
【单选题】有以下程序: #include int f( int x , int y) { return((y - x)*x) ; } main() { int a = 3 , b = 4 , c = 5 , d ; d = f(f(a , b) , f(a , c)) ; printf("%d\n" , d) ; } 程序运行后的输出结果是 ( ) 。
A.
7
B.
10
C.
8
D.
9
【单选题】有以下程序: #include int f(int x) ; main() { int n=1 , m ; m=f(f(f(n))) ; printf("%d\n" , m) ; } int f(int x) { return x*2 ; }
A.
运行后的输出结果是(  )。
B.
8
C.
2
D.
4
E.
1
【单选题】为了便于管理,每本图书都有一个ISBN号,即国际标准书号。自2007年1月1日起,将定长10位的书号扩至( )
A.
11
B.
12
C.
13
D.
14
【单选题】有以下程序 #include double f (double x); main() { double a=0; int i; for ( i=0; i<30; i+=10 ) a +=f( (double)i ); printf ("%3.0f\n", a); } double f (double x) { return x*x+1; } 程序运行后的输出结果是( ...
A.
500
B.
401
C.
503
D.
1404
【单选题】【2014年9月2】1. 有以下程序: #include main() { if('\0'==0)putchar('1'); if('0'==0)putchar('2'); if('a'=='b')putchar('3'); } 程序运行后的输出结果是【 】
A.
1
B.
123
C.
23
D.
3
【单选题】有以下程序 #include main() { int a[3][4]={ 1,3,5,7,9,11,13,15,17,19,21,23}, (*p)[4]=a,i,j,k=0; for( i=0; i<3; i++ ) for( j=0; j<2; j++ ) k=k+*(*(p+i)+j); printf("%d\n", k ); } 程序运行后的输出结果是
A.
108
B.
68
C.
99
D.
60
【多选题】下列属于智能传感器的功能的选项包括?
A.
具有自校准和自诊断功能
B.
具有数据存储、逻辑判断和信息处理功能
C.
具有组态功能,使用灵活
D.
具有双向通信功能,能直接与微处理器或单片机通信
【单选题】有以下程序 #include int funa( int a, intB){ return a+b; } int funb( int a, intB){ return a-b; } int sss( int (*t)(), int x, int y ) { return( (*t)(x,y) ); } main() { int x; x=sss( funa, 9,3 ); x...
A.
24
B.
23
C.
17
D.
22
相关题目: