推土机采用下坡推土法作业时,借机械向下的重力切土,可提高生产率,但坡度不宜超过()。
A.5°
B.10°
C.15°
D.20°
参考答案:C
Not only I but also Jane and Mary _____ tired of having one examination after another. [ ]
A. is
B. are
C. am
D. would be
请编写一个函数void fun(char ss[]),该函数将字符串ss翻转,如ss为“123abc”则翻转后为“cba321”。注意:用数组方式及for循环来实现该函数。 注意:部分源程序已存在文件test16_2.cpp中。 请勿修改主函数main和其他函数中的任何内容,仅在函数fun的花括号中填写若干语句。 文件test16_2.cpp 的内容如下:#include<iostream.h>#include<string.h>void fun (char ss[]);void main ( ) char s[80]; cout<< "请输入字符串: "; cin>>s; fun(s); cout<< "逆序后的字符串: "<< s<<end1;void fun(char ss[])