BMy name is Tom Mallory. I'm English and I'm 13. I'm a student in Brookes School. I like music and sports very much. I can play twoinstruments :the violin and the piano. I can play them very well.I have two sisters. They are students, too. Our parents are from Ireland, but they live in London now. My mother is a teacher and my father is the manager of a small en-gineering company.( )26. Tom lives in________A.IrelandB.EnglandC.CanadaD.America

B

My name is Tom Mallory. I'm English and I'm 13. I'm a student in Brookes School. I like music and sports very much. I can play twoinstruments :the violin and the piano. I can play them very well.

I have two sisters. They are students, too. Our parents are from Ireland, but they live in London now. My mother is a teacher and my father is the manager of a small en-gineering company.

( )26. Tom lives in________

A.Ireland

B.England

C.Canada

D.America


相关考题:

递延期为m期,连续支付n期,每期支付A元,折现率为i的递延年金现值等于 ( )。A.A×(P/A,i,n)×(P/S,i,m)B.A×[(P/A,i,m+n)-(P/A,i,m)]C.A×[(P/A,i,m+n)×(P/A,i,m)]D.A×(S/A,i,n)×(P/S,i,m+n)

递延期为m期,连续支付n期,每期支付A元,折现率为i的递延年金现值等于 ( )。A.A×(P/A,i,n)×(P/F,i,m)B.A×[(P/A,i,m+n)-(P/A,i,m)]C.A×[(P/A,i,m+n)×(P/A,i,m)]D.A×(F/A,i,n)×(P/F,i,m+n)

年名义利率为i,一年内计息周期数为m,则年有效利率为()。A.(1+i)m-1B.(1+i/m)m-1C.(1+i)m-iD.(1+i*m)m-i

年名义利率为i,一年内计息周期数为m,则年有效利率为( )。A:(1+i/m)^m-1 B:(1+i)^m-1C:(1+i)^m-I D:(1+i×m)^m-i

写出以下程序的运行结果: int main() { int m,s,i; for(m=2;m<10;m++) { s=0; for(i=1;i<m;i++) if((m%i)==0) s=s+i; if(s==m) printf(“%d”,m); } return 0; }

22、假设整型变量n,m,i已经声明和赋值,且大于n>2.有如下运算规则:如果n是素数,m=0;否则,m=n。如下程序中正确实现此运算的是?A.m=n; for(i=2;i<n;i++) if(n%i==0){ m=0;break; }B.m=0; for(i=2;i<n;i++) if(n%i==0){ m=n;break; }C.m=0; for(i=2;i<n;i++) if(n%i==0){ m=n;continue; }D.m=n; for(i=2;i<n;i++) if(n%i==0){ m=0;continue; }

下面()仅输出m的大于1的最小因子。A.for (i =2; i<=m-1; i++) if (m % i == 0) { printf("%d is 最小因子n", i); break; }B.for (i =2; i<=m-1; i++) if (m % i == 0) { printf("%d is 最小因子n", i); continue; }C.for (i =2; i<=m-1; i++) if (m % i == 0) { printf("%d is 最小因子n", i); }D.i=2; while (m % i != 0) i++; printf("%d is 最小因子n", i);

下面()是正确的判断素数程序(m>1)。A.j=0; for (i =2; i<=m-1; i++) if (m % i != 0) j++; if(j==m-2) printf(“%d是素数n", m);B.j=0; for (i =2; i<=m-1; i++) if (m % i == 0) j++; if(j==0) printf(“%d是素数n", m);C.flag=0; for (i =2; i<=m-1; i++) if (m % i == 0) flag=1; if(flag==0) printf(“%d是素数n", m);D.for (i =2; i<=m-1; i++) if (m % i == 0) i=m+2; if(i==m+3) printf(“%d是素数n", m);

假设整型变量n,m,i已经声明和赋值,且大于n>2.有如下运算规则:如果n是素数,m=0;否则,m=n。如下程序中正确实现此运算的是?A.m=n; for(i=2;i<n;i++) if(n%i==0){ m=0;break; }B.m=0; for(i=2;i<n;i++) if(n%i==0){ m=n;break; }C.m=0; for(i=2;i<n;i++) if(n%i==0){ m=n;continue; }D.m=n; for(i=2;i<n;i++) if(n%i==0){ m=0;continue; }

若二维数组a有m列,则在a[i][j]之前的元素个数为________。A.i*m+jB.i*m+iC.i*m+j-1D.i*m+i_1