2 条题解

  • 1
    @ 2025-1-5 8:20:41

    😄 😄 😄

    #include<bits/stdc++.h>
    using namespace std;
    int main(){
        string s;
        getline(cin,s);
        for(int i=0;i<s.length();++i){
                if(s[i]>='A' && s[i]<='E')
                s[i]+=21;
            else if(s[i]>='F' && s[i]<='Z')
            s[i]-=5;        
        }
        cout<<s;
        return 0;
    }
    
    • 0
      @ 2025-1-4 19:03:12

      开饭喽

      #include<bits/stdc++.h>
      using namespace std;
      int main(){
          string s;
          getline(cin,s);
          for(int i=0;i<s.size();i++){
              if(s[i]>='A' && s[i]<='E'){
              s[i]+=21;
          }else if(s[i]>='F' && s[i]<='Z')
              s[i]-=5;
          }
          cout<<s;
      }
      
      • 1

      信息

      ID
      326
      时间
      1000ms
      内存
      256MiB
      难度
      7
      标签
      递交数
      104
      已通过
      27
      上传者