【多选题】创业团队 沟通时应注意哪些方面 ?(多选)
【简答题】Since you have never been to that city, you might as well make (reserve) for your hotel.
【判断题】cin.getline(str,20)中,最多只能向str中输入19个字符
【简答题】Since you have never been to that city, you might as well make a (reserve)_______________ for your hotel.
【单选题】听力原文:W:Since you have made so many business trips,you must have visited many places in the country. M:I wish I.had,but Shenzhen and Beijing are the only places I've ever been to. Q:What does the man m...
A.
He has ever visited no more than two cities.
B.
He has made only a few business trips.
C.
He has never been to Shenzhen and Beijing.
D.
He has been to ninny small cities.
【单选题】#include void str_cat(char s1[],char s2[]) { int i,j; i=0; while( 1 ) i++; j=0; while( 2 ) { 3 ; i++; 4 ; } s1[i]='\0'; } void main() { char s1[40],s2[20]; cin.getline(s1,20); cin.getline(s2,19); 5 ; ...
A.
s1[i]!='\0' s2[j]=='\0' s1[i]=s2[j] j++; str_cat(s1,s2)
B.
s1[i]!='\0' s2[j]!='\0' s1[i]==s2[j] j++; str_cat(s1,s2)
C.
s1[i]!='\0' s2[j]!='\0' s1[i]=s2[j] j--; str_cat(s1,s2)
D.
s1[i]!='\0' s2[j]!='\0' s1[i]=s2[j] j++; str_cat(s1,s2)