JAVA编程 编写一个程序,将任意个由四个小写字母组成的字符串译成密码。加密规则是:将 原来的字

2024-12-02 07:28:54
推荐回答(2个)
回答1:

public static String encode(String str) {
    StringBuffer result = new StringBuffer();
    int length = str.length;
    
    for (int i=0; i        char ch = str.charAt(i);
        if (ch >= 'A' && ch<= 'Z') {
            ch = ((ch - 'A') +3 ) % 26 + 'A';
        }
        
        result.append(ch);
    }
    
    return result.toString();
}

回答2:

用^运算符