java script判断回文数
Posted 两颗门牙
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java script判断回文数相关的知识,希望对你有一定的参考价值。
let readline = require(`readline-sync`);
console.log(`请输一个数`);
let num = readline.question(``);
let str = "";
let i;
for (i = num.length - 1; i >= 0; i--) {
// 反序遍历的值存储在str
str += num[i];
}
// 判断字符串与输入的数相同
if (str == num) {
console.log(`yes`);
}
else {
console.log(`no`);
}
以上是关于java script判断回文数的主要内容,如果未能解决你的问题,请参考以下文章