【简答题】给出下列程序段的输出结果 : if( 6 < 5 ) printf(" yes "); else printf(" no ");
【简答题】给出下列程序段的输出结果x=0for i=1 to 10 if (i mod 2 = 1) then x=x+1 else x=x-1 end if exit fornext iprint x
【简答题】给出下列程序段的输出结果: if( 6 ! = 5 ) printf(" yes "); else printf(" no ");
【单选题】脓液及坏死组织中的PABA含量高,因此使磺胺的抗菌作用
【简答题】给出下列程序段的输出结果: int temp = 10; if( temp > 50 ) printf("hot"); else if( temp > 20) printf("comfortable"); else printf("cold");
【简答题】给出下列程序段的输出结果: int temp = 120; if( temp > 50 ) printf("hot"); else if( temp >100 ) printf("really hot"); else if( temp > 20) printf("comfortable"); else printf("cold");
【简答题】给出下列程序段的输出结果: int i, j ; printf("%d", (i=2, j=3, i%j) );
【单选题】下列程序段的输出结果 Clear store 10 to a store 20 to B. set udfparms to reference do swap with a,(b) a,b procedure swap parameters x1,x2 temp=X1 x1=x2 x2=temp endproc
【简答题】给出下列程序段的输出结果: int i = 2, j = 8; j = ( i++ ) + ( j = 3 ); printf(" i=%d, j=%d", i, j );