A、or that she would raise her price
B、or that she will raise her price
C、or that she raises her price
D、and raises her price
第1题:
"Oh, I'm sorry," he ______ her.
A、cried
B、told
C、apologized
D、said
第2题:
能将程序补充完整的选项是( )。

A.i=m
B.i=b
C.i=p.a
D.i=P.change(50)
第3题:
第4题:
I () roast leg of lamb, please.
A、will like
B、would like
C、would
第5题:
6.______ Jenny._______name is Tom.
A.I'm;My
B.Her;My
C.I'm;His
D.She's;Her
第6题:
下列函数change的功能是将字符串中的小写字母转成大写字母,请填空完整。 void change(char *a ) { int i=0; for(i=0;a[i]!= ;i++) if(a[i]>='a'&&a[i]<='z') a[i]=a[i]-32; } void main() { char p[80]; gets(p) ; change(p); puts(p); }