题目内容

*阅读下列程序,分析程序结果。并完成填空,程序运行后第一行输出(1),第二行输出(2) ,第三行输出(3) 。#include #include int main(){char s1[50]= "Hey!";char s2[ ]="I am Lin!" ;//注意每个单词中间为一个空格printf("%d\n", strlen(s1) );printf("%d\n", strlen(s2) );strcat(s1,s2);printf("%s\n",s1);return 0;}

查看答案
更多问题

*阅读下列程序,分析程序结果。#include int main(){char b[7]={"67da12"};int i=0,s=0;for(i =0 ; b[i] >='0'&&b[i]<='9';i+=2)s=10*s+b[i] -'0';printf("%d\n",s);return 0;}

*阅读下列程序,分析程序结果。3.#include int main(){int i= 0 ;char a[ ] = “cbm” ,b[ ] = “cqid”, c[10] ;while (a[i]!=‘\0’ && b[i] != ‘\0’ ){if (a[i] >= b[i] )c[i] = a[i] - 32 ;elsec[i] = b[i] - 32 ;++i ;}c[i] = ‘\0’;puts(c) ;return 0;}

肠道传染病通过( )途径传播。

A. 血液
B. 粪-口
C. 性传播
D. 空气飞沫

肠道传染病的治疗包括( ) 。

A. 提倡口服补液,预防脱水
B. 纠正酸碱平衡
C. 鼓励患者进食
D. 合理使用抗生素
E. 使用止泻药和止吐药

答案查题题库