摘要: #include <iostream>#include <string>using namespace std;int box(int j){ cout<<"你在第几排"<<endl; if(j==2) cout<<"我在第一排"<<endl; else { box(j-1); } cout<<"我 阅读全文
posted @ 2018-12-03 21:54 vincand 阅读(112) 评论(0) 推荐(0)
摘要: #include <iostream>#include <string>using namespace std;int main(){ string s=("12345"); string a=s.substr(2); cout<<a<<endl;} 相当于从字符串第三位(包括第三位)开始重新组成字 阅读全文
posted @ 2018-12-03 21:22 vincand 阅读(114) 评论(0) 推荐(0)