吊车司机接班时应对()进行检查,发现性能不正常,应在操作前排除。
A.制动器
B.吊钩
C.钢丝绳
D.安全装置
E.吊臂
F.绞车卷筒
参考答案:A, B, C, D
The Green Corporation donated the property to the state of California, with one condition ____ the Green family would be allowed to use it when they wished.
A.what
B.which
C.when
D.that
从键盘输入一组小写字母,保存在字符数组str中。请补充函数fun(),该函数的功能是:把字符数组str中字符下标为奇数的小写字母转换成对应的大写字母,结果仍保存在原数组中。 例如,输入“acegikm”,输出“aCeGiKm”。 注意:部分源程序给出如下。 请勿改动主函数main和其他函数中的任何内容,仅在函数fun()的横线上填入所编写的若干表达式或语句。 试题程序: #include <stdio.h> #define N 80 void fun (char s[]) { int i=0; while ( 【1】 ) { if (i%2!=0)s[i]-= 【2】 ; 【3】 ; } } main () { char str [N]; clrscr (); printf("\n Input a string:\n"); gets (str); printf("\n*** original string ***\n"); puts (str); fun (str); printf ("In*** new string ***\n"); puts (str); }