著名的凯撒密码Caesar cipher,又叫移位密码。html
移位密码也就是密码中的字母会按照指定的数量来作移位。函数
一个常见的案例就是ROT13密码,字母会移位13个位置。由'A' ↔ 'N', 'B' ↔'O',以此类推。加密
写一个ROT13函数,实现输入加密字符串,输出解密字符串。code
全部的字母都是大写,不要转化任何非字母形式的字符(例如:空格,标点符号),遇到这些特殊字符,就跳过它们。htm
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 test rot13("SERR PBQR PNZC");