有四个数a,b,c,d,要求从大到小的顺序输出。请分析程序填空。[br][/br]main()[br][/br]{int a,b,c,d,t;[br][/br]scanf("%d %d %d %d",&a,&b,&c,&d);[br][/br]if(a[b){t=a;a=b;b=t;}
举一反三
- 下面程序段A和B,先执行A再执行B,与单独执行B的结果比较( )。[br][/br]程序段A[br][/br]if(m [ n){<br]t = m;[br][/br]m = n;[br][/br]n = t;[br][/br]}[br][/br]程序段B[br][/br]while(n != 0){[br][/br]t = m % n;[br][/br]m= n;[br][/br]n = t;[br][/br]}[br][/br]System.out.println(m); A: 不同 B: 相同 C: 不确定 D: 其他
- 给出下列[代码]注释标注的代码的输出结果。[br][/br]publicclassTest{[br][/br]publicstaticvoidmain(Stringargs[]){[br][/br]charch1='A',ch2='B',ch3='N';[br][/br]chart='\0';[br][/br]if(ch2>ch1){[br][/br]t=ch1;[br][/br]ch1=ch2;[br][/br]ch2=t;[br][/br]}[br][/br]if(ch3>ch1){[br][/br]t=chl;[br][/br]ch1=ch3;[br][/br]ch3=t;[br][/br]}[br][/br]if(ch3>ch2){[br][/br]t=ch2;[br][/br]ch2=ch3;[br][/br]ch3=t;[br][/br]}[br][/br]System.out.printf("%c%c%c",ch1,ch2,ch3);// [代码] }[br][/br]}
- What will be the output of the following Python code? [br][/br]['f', 't'][bool('spam')] A: t B: f C: No output D: Erro
- There<br/>used to be a petrol station near the park, ______? A: didn’t<br/>it B: doesn’t<br/>there C: usedn’t<br/>it D: didn’t<br/>there
- 以下函数的功能对应于 。[br][/br]int fun(char *s, char *t) {[br][/br]while( (*s)&&(*t)&&(*t==*s)){[br][/br]t++;[br][/br]s++;[br][/br]}[br][/br]return(*s-*t);[br][/br]} A: strlen(s)+strlen(t) B: strcmp(s,t) C: strcpy(s,t) D: strcat(s,t)