st='abc234d' st=str(st)[2:-1] print(st) 结果是 A: c234 B: c234d
st='abc234d' st=str(st)[2:-1] print(st) 结果是 A: c234 B: c234d
写出程序运行结果:#include"stdio.h"#include"string.h"main(){charst1[15],st3[15],st2[]="CLanguage";strcpy(st1,st2);strcpy(st3,st2,3);puts(st1);puts(st3);printf("");}
写出程序运行结果:#include"stdio.h"#include"string.h"main(){charst1[15],st3[15],st2[]="CLanguage";strcpy(st1,st2);strcpy(st3,st2,3);puts(st1);puts(st3);printf("");}
要把st变成st=['x','a','b'],那么操作是st=['a','b']_____print(st) A: st.append('x') B: st.insert(1,'x') C: st.insert('x') D: st.insert(0,'x')
要把st变成st=['x','a','b'],那么操作是st=['a','b']_____print(st) A: st.append('x') B: st.insert(1,'x') C: st.insert('x') D: st.insert(0,'x')
def f(st): st.append('x') return stst=['a']st=f(st)print(st)结果是 A: ['a','x'] B: ['a'] C: ['x'] D: ['x','a']
def f(st): st.append('x') return stst=['a']st=f(st)print(st)结果是 A: ['a','x'] B: ['a'] C: ['x'] D: ['x','a']
____ ['kʌstəm] n 习惯;风俗
____ ['kʌstəm] n 习惯;风俗
根据音标写出下面单词[ˈdræg(ə)n][sneɪk][hɔːs][ʃiːp][ˈruːstə]
根据音标写出下面单词[ˈdræg(ə)n][sneɪk][hɔːs][ʃiːp][ˈruːstə]
创建一个空列表的方法是 st=[]。(<br/>)
创建一个空列表的方法是 st=[]。(<br/>)
完成下面类中成员函数的定义。#include [iostream] #include [string] using namespace std; class str {private: char *st; public: str(char *a) {set(a); } str & operator=(str &a) {delete st; set(a.st); return *this; } void show(){cout<<st<<endl;} ~str(){delete st;} void set(char *s)//初始化st {_____ strcpy(st,s); } }; void main() {str s1("he"),s2("she"); s1.show(),s2.show(); s2=s1; s1.show(),s2.show();}
完成下面类中成员函数的定义。#include [iostream] #include [string] using namespace std; class str {private: char *st; public: str(char *a) {set(a); } str & operator=(str &a) {delete st; set(a.st); return *this; } void show(){cout<<st<<endl;} ~str(){delete st;} void set(char *s)//初始化st {_____ strcpy(st,s); } }; void main() {str s1("he"),s2("she"); s1.show(),s2.show(); s2=s1; s1.show(),s2.show();}
※[21~22].(2).( )...※[19~20].(2).( )...※[21~22].(2).( )...※[19~20].(2).( )...[16~18]().(2)[16~18]().(2)※[13~15].(2)※[9~12].(2)[16~18]().(2)※[13~15].(2) A: A. B: B. C: C. D: D.
※[21~22].(2).( )...※[19~20].(2).( )...※[21~22].(2).( )...※[19~20].(2).( )...[16~18]().(2)[16~18]().(2)※[13~15].(2)※[9~12].(2)[16~18]().(2)※[13~15].(2) A: A. B: B. C: C. D: D.
※[48~50].(2)4..,...( )..※[46~47].(2)..().().().().※[46~47].(2)..().().().().※[44~45].(2)..( )......※[44~45].(2)..( )......※[42~43].(2),.9.()....().,..,,...,.,,,.※[39~41].(2)※[42~43].(2),.9.()....().,..,,...,.,,,.※[35~38].(2)※[39~41].(2) A: A. B: B. C: C. D: D.
※[48~50].(2)4..,...( )..※[46~47].(2)..().().().().※[46~47].(2)..().().().().※[44~45].(2)..( )......※[44~45].(2)..( )......※[42~43].(2),.9.()....().,..,,...,.,,,.※[39~41].(2)※[42~43].(2),.9.()....().,..,,...,.,,,.※[35~38].(2)※[39~41].(2) A: A. B: B. C: C. D: D.