某大厦建成后存在严重质量问题,不得不爆破拆除,这说明工程项目具有( )的特征。
A.一次性B.唯一性C.不确定性D.不可逆转性
参考答案:D
--- _________________?
--- I have a headache.
A.Are you tired?
B.What’s the matter?
C.How are you?
D.What is it?
以下程序的功能是将字符串s中的数字字符放入d数组中,最后输出d中的字符串。 例如,输入字符串:abc123edf456gh,执行程序后输出:123456。请填空。 #include <stdio.h> #include <ctype.h> main() char s[80],d[80]; int i,j;gets(s);for(i=j=0;s[i]! =’\0’;i++) if( 【9】 ) d[j]=s[i]; j++;d[j]=’\0’;puts(d);