I could speak () words of Swedish, but I wasn’t very fluent. A.someB.few

I could speak () words of Swedish, but I wasn’t very fluent.

A.some

B.few


相关考题:

I ()have been here, but I()not find the time.A. could; couldB. might; couldC. should; couldD. should; would

When did you last write to Peter? -Oh, I( )to him for ages.A. didn’t writeB. don't writeC. wasn't writingD. haven't written

I’d love to have a break, but I can't () the time now. A.spareB.spendC.speak

publicclassPet{publicvoidspeak(){System.out.print(Pet”);}}publicclassCatextendsPet{publicvoidspeak(){System.out.print(Cat”);}}publicclassDogextendsPet{publicvoidspeak(){System.out.print(Dog”);}}执行代码Pet[]p={newCat(),newDog(),newPet()};for(inti=0;i〈p.length;i++)p[i].speak();后输出的内容是哪项?()A.PetPetPetB.CatCatCatC.CatDogPetD.CatDogDog

_________ she practice her violin yesterday? No, she _________.A、Was, wasn’tB、Did, didn’tC、Was, didn’tD、Did, wasn’t

如下电路中,t<2s,电流为2A,方向由a流向b;t>2s,电流3A方向由b流向a,参考方向如图所示,则I(t)为()。A.I(t)=2A,t<2s;I(t)=3A,t>2sB.I(t)=2A,t<2s;I(t)=-3A,t>2sC.I(t)=-2A,t<3s;I(t)=3A,t>2sD.I(t)=-2A,t<2s;I(t)=-3A,t>2s

I__________have been there,but I__________not find the time.A.should;wouldB.should;couldC.might;couldD.could;could

输入hello↙,写出下面程序的运行结果。 #include <stdio.h> #include <string.h> int main() { char s[80],t[200]; int i,sl ; gets(s); sl = strlen(s); for(i=0 ;i<sl ;i++) t[i]=s[sl-i-1] ; for (i=0; i<sl; i++) t[sl+i] = s[i]; t[sl+i]='0' ; puts(t); return 0; }

下面程序的功能是计算1-3+5-7+ …… -99+101的值。 ① main() { int i,t=1,s=0; for(i=1;i<=101;i+=2) { ① ; s=s+t; ② ; } printf(”%dn”,s}; }A.t = i * tB.t = i * (t+1)C.t = (i+1)* tD.t = (i-1) * t

【填空题】下面程序的运行结果是 。 #include<stdio.h> main() {int i,t,sum=0; for(t=i=1;i<=10;) {sum+=t;++i; if(i%3==0) t=-i; else t=i; } printf("sum=%d",sum); }