用万用表测得的发电机转子绕组阻值为0~1Ω,则说明该绕组()。
A.有断路
B.在工作
C.有短路
D.完好
参考答案:C
[函数2.1说明] 函数int factors(int n)的功能是判断整数n(n>=2)是否为完全数。如果n是完全数,则函数返回0,否则返回-1。 所谓“完全数”是指整数n的所有因子(不包括n)之和等于n自身。例如:28的因子为1,2,4,7,14,而28=1+2+4+7+14,因此28是“完全数”。 [函数2.1]int factors (int n) int i/s; for (i=1, s=0; i<=n/2;i++) if (n%i==0) [ (1) ]; if([ (2) ]) return 0; rerurn -1; [函数2.2说明] 函数int maxint(int a[],int k)的功能是用递归方法求指定数组中前k个元素的最大值,并作为函数值返回。 [函数2.2] int maxint (int a [] ,int k) int t; if([ (3) ]) return [ (4) ]; t = maxint (a+1, [ (5) ]) ; return (a[0]>t) a[0]:t;
Tom concluded his lecture ________ that he couldn’t emphasize enough how important our efforts were.
A.to say
B.saying
C.said
D.having said