It's my girlfriend's birthday party. She will be very upset if I don't (). A、put onB、show upC、call upD、leave alone
It's my girlfriend's birthday party. She will be very upset if I don't ().
A、put on
B、show up
C、call up
D、leave alone
相关考题:
函数my_cmp()的功能是比较字符串s和t的大小,当s等于t时返回0,否则返回s和t的第一个不同字符的ASCII码差值,即s t时返回正值,当s t时返回负值。请填空。my_cmp(char *s, char *t){while (*s == *t){if (*s == ′\0′)return 0;++s; ++t;} return 【18】 ;}
Let’s ___ play in the street . Father tells me ____ do so.A. not to ….. not toB. not …not toC. don’t , to notD. not to …don’t
以下不能将S所指字符串正确复制到t所指存储空间的是( )。A.while(*t=*s){t++;s++;)B.for(i=0;t[i]=s[i];i++);C.do{*t++=*s++;)while(*s);D.for(i=0,j=o;t[i++]=s[j++];);
以下不能将s所指字符串正确复制到t所指存储空间的是( )。A.do{*t++=*8++;}while(*s);B.for(i=0;t[i]=s[i];i++);C.while(*t=*s){t++;s++;}D.for(i=0,j=0;t[i++]=s[j++];);
以下不能将s所指字符串正确复制到t所指存储空间的是( )。A.while(*t=*s){t++;s++;}B.for(i=0;t[i]=s[i];i++);C.do{*t++:*s++;}while(*s);D.for(i=0,j=0;t[i++]=s[j++];);
如下电路中,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
下面程序的功能是计算s=1+12+123+1234+12345+……+123456789,下划线处应填写()。 #include <stdio.h> int main() { int t=0,s=0,i; for(i=1; i<=9; i++) { t=____________; s=s+t; } printf("s=%d",s); return 0; }A.10*t+iB.t+iC.10*i+tD.s*10+i
以下程序的功能是计算:s=1+12+123+1234+12345 #include<stdio.h> int main() { int t=0,s=0,i; for(i=1;i<=5;i++) {t=i+_____; s=s+t; } printf("s=%dn",s); return 0; }A.tB.t*100C.t+10D.t*10
以下程序的功能是计算:s=1+12+123+1234+12345 #include<stdio.h> int main() { int t=0,s=0,i; for(i=1;i<=5;i++) {t=i+_____; s=s+t; } printf("s=%dn",s); return 0; }A.tB.t+100C.t+10D.t*10