function rot13(str) { // LBH QVQ VG!
// 请把你的代码写在这里
var code=[];
for(var i=0;i<str.length;i++)
{
if(str.charCodeAt(i)<65||str.charCodeAt(i)>90)
{
code.push(str.charAt(i));
}
else if(str.charCodeAt(i)>77)
{
code.push(String.fromCharCode(str.charCodeAt(i) - 13));
}
else
{
code.push(String.fromCharCode(str.charCodeAt(i) + 13));
}
}
return code.join("");
}
rot13("SERR PBQR PNZC"); // 你可以修改这一行来测试你的代码
// 请把你的代码写在这里
var code=[];
for(var i=0;i<str.length;i++)
{
if(str.charCodeAt(i)<65||str.charCodeAt(i)>90)
{
code.push(str.charAt(i));
}
else if(str.charCodeAt(i)>77)
{
code.push(String.fromCharCode(str.charCodeAt(i) - 13));
}
else
{
code.push(String.fromCharCode(str.charCodeAt(i) + 13));
}
}
return code.join("");
}
rot13("SERR PBQR PNZC"); // 你可以修改这一行来测试你的代码