摘要: #include <iostream> #include <vector> using namespace std; int main(){ string la,lb; int b,l=0; cin>>la>>b; vector<int> a,cl; for(int i=la.size()-1;i> 阅读全文
posted @ 2024-06-07 20:29 陈若麟 阅读(19) 评论(0) 推荐(0)
摘要: #include<iostream> #include<vector> using namespace std; int main(){ string s; cin>>s; vector<int> a,b; for(int i=s.size()-1;i>-1;i--){ a.push_back(s[ 阅读全文
posted @ 2024-06-07 19:47 陈若麟 阅读(15) 评论(0) 推荐(0)