光学合像水平仪的水准管在测量中起()作用。
A.定位
B.读数
C.示值
D.校正
参考答案:A
以下程序运行后输入:3,abcde<回车>,则输出结果是【 】 #include <string.h> move(char *str, int n) { char temp; int i; temp=str[n-1]; for(i=n-1;i>0;i--) str[i]=str[i-1]; str[0]=temp; } main( ) { char s[50]; int n, i, z; scanf("%d,%s",&n,s); z=strlen(s); for(i=1; i<=n; i++= move(s, z); printf("%s\n",s); =
下面程序段的输出结果为 public class Test { public static void main(String args[]) {boolean a,b,c;a=(3<5);b=(a==true);System.out.println(”a=”+a+”b=+b) ;c=(b==false);System.out.printhln(”b=”+b+”c=”+c) ;} }
A.a=true b=false b=true c=false
B.a=true b=falseb=true c=true
C.a=true b=true b=tree c=false
D.a=false b=falseb=tree c=false