题目内容

以下程序功能是:输入3个整数,按照从小到大的顺序进行输出,将程序补充完整。#includeint main(){int a,b,c,t;scanf("%d%d%d",&a,&b,&c);if(_______){t=a;a=b;b=t;}if(a>c){_____________}if(_____){t=b;b=c;c=t;}printf("%d %d %d",a,b,c);return 0;}

查看答案
更多问题

以下程序运行后的输出结果是_________。#include int main(){int a=-1,b=1;if((++a<0)&&!(b--<0==0))printf("%d,%d\n",a,b);elseprintf("%d,%d\n",b,a);return 0;}

以下程序运行后的输出结果是__________。#includeint main(){int a=1,b=2,c=3,d=0;if(a==1)if(b!=2)if(c==3)d=1;else d=2;else if(c!=3)d=3;else d=4;else d=5;printf("%d\n",d);return 0;}

以下程序运行后的输出结果是______________。#includeint main(){int x=1,y=0,a=0,b=0;switch(x){case 1:switch(y){case 0:a++;break;case 1:b++;break;}case 2:a++;b++;break;case 3:a++;b++;}printf("a=%d,b=%d\n",a,b);return 0;}}

Regarding HIV which of the following is not true

A. It is a DNA retrovirus
B. Contains reverse transcriptase
C. May infect host CD4+ cells other than T-lymphocytes
D. Causes a reduction in host CD4+ cells at late stage of disease

答案查题题库