使用IF/ELSE语句以及Math.random函数,对随 机生成的0~1000内的整数n进行奇偶性判断,若为奇数则打印:n +“is odld.",若为偶数则打 印:n+" is even."
时间: 2023-05-14 09:06:10 浏览: 66
JavaScript中用于生成随机数的Math.random()方法
好的,这是一个简单的 JavaScript 代码实现:
let n = Math.floor(Math.random() * 1001); // 生成 0~1000 的随机整数
if (n % 2 === 0) {
console.log(n + " is even.");
} else {
console.log(n + " is odd.");
}
注意,我们使用 Math.floor 函数将 Math.random 生成的小数转换为整数,然后使用取模运算符 % 判断奇偶性。如果 n % 2 为 0,则说明 n 是偶数,否则是奇数。最后使用 console.log 函数打印结果。
阅读全文