Dad wondered where I'd been, and I ________ a story about being at Grandma's A.made outB.made upC.looked outD.looked up
Dad wondered where I'd been, and I ________ a story about being at Grandma's
A.made out
B.made up
C.looked out
D.looked up
相关考题:
—Dad, I won first place in the speech contest.—______! I’m proud of you, my daughter. A.CongratulationsB.Good luckC.My pleasureD.Good idea
1.—_________ .Where's the fruit shop?—I'm sorry.I'm new here.A.SorryB.I’m sorryC. OKD.Excuse me
以下能正确计算1×2×3×4...×10的程序段是A.i=1; s=1; do { s=s*i; i++; } while(i<=10);B.do { i=1; s=1; s=s*i; i++; } while(i<=10);C.do { i=1; s=0; s=s*i; i++; } while(i<=10);D.i=1; s=0; do { s=s*i; i++; } while(i<=10);
以下能正确计算1+2+3+…+10的程序段是 。A.i=1; s=1; do {s=s+i; i++;} while (i<10);B.do {i=1;s=0; s=s+i; i++;} while (i<=10);C.do {i=1;s=1; s=s+i; i++;} while (i<=10);D.i=1,s=0; do {s=s+i; i++;} while (i<=10);E.i=1; s=1; do {s=s+i; i++;} while (i<=10);F.i=1,s=0; do {s=s+i; i++;} while (i<10);
下列选项中,与"for(i=1,s=0;i<n;i++){s=s+i;}"功能相同的程序段是()A.for(i=n,s=0;i>1;i--){s=s+i;}B.for(i=n,s=0;i>=1;i--){s=s+i;}C.for(i=n-1,s=0;i>1;i--){s=s+i;}D.for(i=n-1,s=0;i>0;i--){s=s+i;}
以下能正确计算10!的程序段是 。A.do {i=1;s=1;; s=s*i; i++; }while(i<=10);B.do{i=1;s=0 s=s*i; i++; while(i<=10);C.i=1;s=1; do{s=s*i; i++; }while(i<=10);D.i=1;s=0; do{s=s*i; i++; }while(i<=10);
以下能正确计算1×2×3×…×10的程序段是 。A.do {i=1;s=1; s=s*i; i++; } while(i<=10);B.do {i=1;s=0; s=s*i; i++; } while(i<=10);C.i=1;s=1; do {s=s*i; i++; } while(i<=10);D.i=1;s=0; do {s=s*i; i++; } while(i<=10);