皮皮学,免费搜题
登录
logo - 刷刷题
搜题
【多选题】
What are the metaphors for culture?
A.
Culture is like an iceberg.
B.
Culture is like an apple.
C.
Culture is the grammar of our behavior.
D.
Culture is the software of our mind.
E.
Culture is like a computer.
F.
Culture is like the water a fish swims in.
手机使用
分享
复制链接
新浪微博
分享QQ
微信扫一扫
微信内点击右上角“…”即可分享
反馈
参考答案:
举一反三
【简答题】下列程序的字符串中各单词之间有一个空格,则程序的输出结果是【 】。 include <stdio.h> include <string.h> main() { char str1[]='How do you do', *p1=str1; strcpy(str1+strlen(str1)/2,'es she'); printf('%s/n',p1); }
【单选题】有下列程序:#include void WriteStr(char *fn,char *str){ FILE *fp;fp=fopen(fn,"w");fputs( str,fp);fclose(fp);}main( ){ WriteStr("t1.dat","start");WriteStr("t1.dat","end");}程序运行后,文件t1.dat 中的内容是( )。
A.
start
B.
end
C.
startend
D.
endrt
【简答题】下列程序中字符串中各单词之间有一个空格,则程序的输出结果是______。 # include void main( ) { char str1[ ]="How do you do", *p1=str1; strcpy(str1+strlen(str1)/2,"es she"); cout< }
【单选题】主要用于食品保鲜,如礼品点心、蛋糕等的包装是()。
A.
收缩包装
B.
吸氧包装
C.
透气包装
D.
充气包装
【单选题】有下列程序,程序运行后的输出结果是( )。 #include void ss( char *s, char t) { while (*s) { if (*s==t) *s=t-'a'+'A'; s++; } } int main() { char str[100]="abcddfefdbd", c='d'; ss(str, c); puts(str); return 0; }
A.
ABCDDEFEDBD
B.
、 abcDDfefDbD
C.
、 abcAAfefAbA
D.
、 Abcddfefdbd
【简答题】程序改错题(下列每小题有一个错误,找出并改正)(直接填写正确代码) 下列程序的功能是复制字符串a 到b中。 #include void main() { char *str1=a,*str2,a[20]="abcde",b[20]; str2=b; while(*str2++=*str1++); }
【简答题】下列程序能将字符串s1中的所有与字符串str1相同的子串替换成字符串sb2,并将替换后的新串存于字符数组s2中。 include<stdio. h> void replace(s1,s2,str1,str2) char *s1,*s2,*str1,*str2; { char *t0,*t1,*t2,*x,*y; x=s1;y=s2; while(【 】) { for(t0=s1,t1=str1; ...
【单选题】有下列程序: #include void f(char *s,char *t) { char k; k=*s; *s=*t; *t=k; s+ +; t--; if(*s) f(s,t); } main( ) { char str[10]="abcdefg",*p; p=str+strlen(str)/2+1; f(p,p-2); printf("%s\n",str); } 程序运行后的输出结果...
A.
abcdefg
B.
gfedcba
C.
gbcdea
D.
abedcfg
【简答题】下列程序中字符串中各单词之间有一个空格,则程序的输出结果是______。 # include void main( ) { char str1[ ]="How do you do", *p1=str1; strcpy(str1+strlen(str1)/2,"es she"); cout< }
【简答题】下列程序中字符串中各单词之间有一个空格,则程序的输出结果是【 】。 include<string.h> main() { char str1[]='How do you do',*p1=str1; strcpy(str1+strlen(str1)/2,'es he'); printf('%s/n',p1); }
相关题目:
参考解析:
知识点:
题目纠错 0
发布
创建自己的小题库 - 刷刷题