晚上8点来接我。I need to be ____ ____ at 8 p.m..
举一反三
- 执行i=8;m=++i;语句后,i和m的值分别为()。 A: i=9,m=9 B: i=8,m=8 C: i=8,m=9 D: i=9,m=8
- Woman: When is the visit to the museum tomorrow? Is it at 8:30 in the morning?Man: No, it’s at 1:30 in the afternoon. The meeting is at 8:30.When will they visit the museum tomorrow?() A: At 8:30 a.m.. B: At 9:30 a.m.. C: At 1:30 p.m.. D: At 2:30 p.m..
- 根据资金等值变换公式,在年利率为i情况下,将发生在第1、2、3年末的三笔等额年金M折算到第5、6、7、8年末的等额年金,其年金金额为( )。 (1.5分) A: 3M/4 B: M (F/A,i,3) (F /P,i,2) (A/ P,i,4) C: M(F/P,i,4) D: M(P/A,i,3) (F/P,i,8) (A/F,i,4)
- 不能实现阶乘 8!(结果存放在 p 中) 的程序段是【 】。 A: p=1; for(i=1; i<9; i++) p=p*i; B: p=2; for(i=8; i>3; i--) p=p*i; C: p=1; i=1; while(i<9) p=p*i++; D: p=1; i=8; do{ p=p*i--; } while(i>1);
- 下面的程序段不能实现求阶乘8!(8!=1*2*3*4*5*6*7*8,结果存放在p中)的是() A: p=1;<br/>for(i=1;i<9;i++) <br/>p=p*i; B: p=2;<br/>for(i=8;i>3;i--)<br/>p=p*i; C: p=1;i=1; <br/>while(i<9) <br/>p=p*i++ ; D: p=1;i=8;<br/>do{p=p*i--;<br/>}while(i>1);