问题:

著名的凯撒密码Caesar cipher,又叫移位密码。

移位密码也就是密码中的字母会按照指定的数量来做移位。

一个常见的案例就是ROT13密码,字母会移位13个位置。由'A' ↔ 'N', 'B' ↔'O',以此类推。

写一个ROT13函数,实现输入加密字符串,输出解密字符串。

要求:

所有的字母都是大写,不要转化任何非字母形式的字符(例如:空格,标点符号),遇到这些特殊字符,就跳过它们。

解答:

function rot13(str) { // LBH QVQ VG!    var start = "A".charCodeAt(0);    var end = "Z".charCodeAt(0);    var strList = str.split("");    var judge, replace;    for(var i = 0; i < str.length; i++){        judge = strList[i].charCodeAt(0);        if(judge <= end && judge >= start){            replace = start + (judge - start + 13) % 26;            strList[i] = String.fromCharCode(replace);        }    }    newStr = strList.join("");    return newStr;}// Change the inputs below to testrot13("SERR PBQR PNZC");

链接:

https://www.w3cschool.cn/code...