-- Hello. I'd like to speak to Mr. Reynolds.-- _____.A. I'm sorry he's not in right nowB. No, you can'tC. Sorry, you can'tD. Ok, go on
-- Hello. I'd like to speak to Mr. Reynolds.
-- _____.
A. I'm sorry he's not in right now
B. No, you can't
C. Sorry, you can't
D. Ok, go on
相关考题:
–()–Sorry. I have another appointment next Monday. A、I'd like to make an appointment with you.B、I'd like to make an appointment for next Monday.C、I'd like to meet with Mr. Smith next Monday.D、Can you see me next Monday?
递延期为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)
Hello, I'd like to speak to Phil.He's out to lunch now.()A. Sorry, you can't.B. I don't know.C. Would you mind calling back later?
下列程序段的输出结果为( )。 Dim M(S, S), S(5) For i=1 To 5 S(i)=0 For j=1 To 5 M(i, j)=i+j S(i)=S(i)+M(i, j) Next j Next i For Each x In S Print x; Next xA.20 23 24 35 40B.20 25 30 35 40C.20 23 25 35 40D.20 25 35 40 45
写出以下程序的运行结果: 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; }