题解 | #字符串加解密#

字符串加解密

http://www.nowcoder.com/practice/2aa32b378a024755a3f251e75cbf233a

写个解密和加密的函数,字符进行+1或-1就好了

#include <string>
#include <map>
#include <vector>

using namespace std;
string encryption(string str){
    for(int i = 0;i<str.size();i++){
        if(isalpha(str[i])){
            if(str[i]>='a'&&str[i]<'z'){
                str[i]+=1;
                str[i]=toupper(str[i]);
            }
            else if(str[i]>='A'&&str[i]<'Z'){
                str[i]+=1;
                str[i]=tolower(str[i]);
            }
            else if(str[i]=='z')str[i]='A';
            else str[i]='a';
        }//if is alpha
        else if (isdigit(str[i])){
            if(str[i]>='0'&&str[i]<'9')str[i]=str[i]+1;
            else if(str[i]=='9')str[i]=str[i]-9;
            
        }//else if is digit
        
    }//for
    return str;
}
string decryption(string str){
      for(int i = 0;i<str.size();i++){
        if(isalpha(str[i])){
            if(str[i]>'a'&&str[i]<='z'){
                str[i]-=1;
                str[i]=toupper(str[i]);
            }
            else if(str[i]>'A'&&str[i]<='Z'){
                str[i]-=1;
                str[i]=tolower(str[i]);
            }
            else if(str[i]=='a')str[i]='Z';
            else str[i]='z';
        }//if is alpha
        else if (isdigit(str[i])){
            if(str[i]>'0'&&str[i]<='9')str[i]=str[i]-1;
            else if(str[i]=='0')str[i]=str[i]+9;
            
        }//else if is digit
        
    }//for
    return str;
}

int main() {
    string str;
    bool first = true;
    while(cin>>str){
        string out;
        if(first)    {out=encryption(str);first=!first;}
        else    {out=decryption(str);first=!first;}
        
        cout<<out<<endl;
    }
    
    
    
}
全部评论

相关推荐

小红书 后端选手 n*16*1.18+签字费期权
点赞 评论 收藏
分享
11-05 07:29
贵州大学 Java
点赞 评论 收藏
分享
无敌虾孝子:喜欢爸爸还是喜欢妈妈
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务