ACCCCCCCCCCCCCCCCCCC
2023-12-22 21:22:13
发布于:广东
6阅读
0回复
0点赞
#include <iostream>
#include <algorithm>
#include <string>
using namespace std;
int main(){
string str;
cin >> str;
int n;
cin >> n;
for(int i = 0; i < n; i++){
int x;
cin >> x;
if(x == 1){
string str2;
cin >> str2;
str += str2;
}else if(x == 2){
cout << str.size() << endl;
}else if(x == 3){
string str2;
cin >> str2;
cout << max(str, str2) << endl;
}
}
return 0;
}
这里空空如也
有帮助,赞一个