1.—_________ .Where's the fruit shop?
—I'm sorry.I'm new here.
A.Sorry
B.I’m sorry
C. OK
D.Excuse me
第1题:
5.—Can you go to the mall with me this afternoon?
—_______
A. Sorry,l’d not here
B. Sure,l-d love to
C. Sorry,l can
D. Yes,I’ll
第2题:
第3题:
第4题:
如果用I表示投资、S表示储蓄、T表示税收、G表示政府购买,X表示出口、M表示进口,则四部门经济中储蓄和投资的恒等关系是()
A.I=S+(T-G)+(M-X)
B.I=S+T-G+M
C.I=S+(T-G)
D.I=S+(M-X)
第5题:
第6题:
写出以下程序的运行结果: 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; }