2 条题解

  • 4

    #include<bits/stdc++.h>
    using namespace std;
    typedef long long ll;
    ll i=0,n,j;
    string s;
    void nx(string s,ll i)
    {
    if(s[i]!='!')
    {

    i++;
    nx(s,i);
    }
    cout<<s[j];
    j--;
    return;
    }
    int main()
    {

    getline(cin,s);
    j=s.size()-1;
    nx(s,i);
    return 0;
    }
    //老实人。不瞒你说,想要个赞

  • 0
    @ 2024-08-26 16:36:31
    #include<iostream>
    #include<string>
    using namespace std;
    string s;
    int main(){
        ios::sync_with_stdio(false);
        getline(cin, s);
        for(int i = s.size() - 1; i >= 0; i--)cout << s[i];
        return 0;
    }
    
  • 1

信息

ID
1555
难度
6
分类
(无)
标签
递交数
16
已通过
12
通过率
75%
被复制
5
上传者