英文:
Check if the number is even or odd without using if else
问题
输入一个整数。使用三元运算符检查这个数字是偶数还是奇数。
我无法解决这个问题。
英文:
Enter an integer. Check if the number is even or odd
(using the ternary operator)
I can't solve this problem
答案1
得分: 1
let num = 3;
num % 2 == 1 ? console.log("奇数"): console.log("偶数");
英文:
let num = 3;
num % 2 == 1 ? console.log("odd"): console.log("even");
答案2
得分: 0
以下是您要翻译的内容:
const isEven = (value) => value % 2 === 0 ? true : false;
console.log(isEven(4));
console.log(isEven(7));
英文:
<!-- begin snippet: js hide: false console: true babel: false -->
<!-- language: lang-js -->
const isEven = (value) => value % 2 === 0 ? true : false;
console.log(isEven(4));
console.log(isEven(7));
<!-- end snippet -->
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论