0000
2026-01-09 15:41:09
发布于:上海
3阅读
0回复
0点赞
#include<iostream>
using namespace std;
int main() {
int t;
cin>>t;
for(int i=0;i<t;i++){
int p;
cin>>p;
if(p<=10){
cout<<"R"<<endl;
}else if(p>10&&p<=20){
cout<<"L"<<endl;
}else if(p>20){
cout<<p<<endl;
}
}
return 0;
}
这里空空如也




有帮助,赞一个