一根绳原长10米,现以3∶2的比例剪成两段,则两根绳的长度相差( )米。
A.1
B.3
C.2
D.5
参考答案:C
Look, _____ fashionable clothes is she wearing that all the eyes are fixed on her![ ]
A. so
B. such
C. how
D. what
有以下程序: int a=2; int f(int n) static int a=3; int t=0; if(n%2)static int a=4;t+=a++; elsestatic int a=5;t+=a++; return t+a++; main() int s=a,i; for(i=0;i<3;i++)s+=f(i); printf("%d\n",s); 程序运行后的输出结果是______。
A) 26 B) 28 C) 29 D) 24