摘要: //斐波那契数列:后一个数等于前面两个数的和 //0,1,1,2,3,5,8,13,21.... let readline = require("readline-sync"); console.log("请输入斐波那契数列的位数:") let pos = readline.question("") 阅读全文
posted @ 2019-08-19 15:27 夜雨与你 阅读(438) 评论(0) 推荐(0) 编辑
摘要: /*求s=a+aa+aaa+aaaa+aa...a的值,其中a是一个数字。 例如2+22+222+2222+22222(此时共有5个数相加),几个数相加有键盘控制。*/ let readline = require("readline-sync"); console.log("请输入您想计算的数字: 阅读全文
posted @ 2019-08-19 15:26 夜雨与你 阅读(908) 评论(0) 推荐(0) 编辑
摘要: //九九乘法表 let i,j,str; for(i=1;i<=9;i++) { str = ""; for(j=1;j<=i;j++) { str = str+i+'*'+j+'='+(i*j)+" "; } console.log(str); } //九九乘法表 let i,j,str; for 阅读全文
posted @ 2019-08-19 15:26 夜雨与你 阅读(1991) 评论(0) 推荐(0) 编辑
摘要: //判断是否为回文数:若n=1234321,则称n为一回文数 let readline = require("readline-sync"); let newNum = 0; console.log("请输入您要判断的回文数"); let oldNum = parseInt(readline.que 阅读全文
posted @ 2019-08-19 15:25 夜雨与你 阅读(1377) 评论(0) 推荐(0) 编辑
摘要: //让用户输入行数,使用for循环嵌套打出正着的星星来,行数等于用户输入的数字 //例如:用户输入6 // * // *** // ***** // ******* // ********* // *********** let readline = require("readline-sync") 阅读全文
posted @ 2019-08-19 15:24 夜雨与你 阅读(302) 评论(0) 推荐(0) 编辑
摘要: //1-10000以内的完数 //完数:因子之和相加等于这个数 //例如:6的因子为1,2,3:1+2+3=6 // 6 // 28 // 496 // 8128 let sum = 0, i, j; //for循环应该是从1开始小于自己本身 for (i = 1; i < 10000; i++) 阅读全文
posted @ 2019-08-19 15:24 夜雨与你 阅读(1279) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http-equiv 阅读全文
posted @ 2019-07-25 10:42 夜雨与你 阅读(1678) 评论(0) 推荐(0) 编辑
摘要: HTML: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta http 阅读全文
posted @ 2019-07-23 17:21 夜雨与你 阅读(1172) 评论(1) 推荐(2) 编辑