经射线探伤后胶片上出现的缺陷影象不包括()。
A.连续的黑色直线
B.深色条纹
C.一条淡色影象
D.断续黑线
参考答案:C
Now let me tell you the work I have been doing with them. My job with the UN is not paid, but voluntary and as I said _______, I mainly visit countries where the UN has programs to help people.
A.before
B.although
C.even
D.in case
假定输入的字符串中只包含字母和*号。请编写函数 fun(),它的功能是:将字符串尾部的*号全部删除,前面和中间的*号不删除。 例如,若字符串中的内容为****A*BC*DEF*G*******删除后,字符串中的内容则应当是****A*BC*DEF*G。 注意:部分源程序给出如下。 请勿改动主函数main和其他函数中的任何内容,仅在函数6ln的花括号中填入所编写的若干语句。 试题程序: #include <stdio,h> #include <conio.h> void fun (char *a) main() char s[81]; printf("Enter a string :\n"); gets(s); fun(s); printf("The string after deleted:\n"); puts(s);