"i’m booked on to tomorrow’s flight,( )?" A. are youB.are IC. aern’t ID. aren’t I
"i’m booked on to tomorrow’s flight,( )?"
A. are you
B.are I
C. aern’t I
D. aren’t I
相关考题:
If I didn’t have to get up early, I( )out tonight, but I start work at 7.30 tomorrow. A. wentB. would goC. had goneD. am going
I’ll go for a walk with you if it ____ tomorrow.A. won’t rainB. doesn’t rainC. will rainD. not rains
递延期为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)
下列程序段的输出结果为( )。 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; }