检查数字是偶数还是奇数,不使用if else。

huangapple go评论44阅读模式
英文:

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) =&gt; value % 2 === 0 ? true : false;
console.log(isEven(4));
console.log(isEven(7));

<!-- end snippet -->

huangapple
  • 本文由 发表于 2023年2月27日 00:43:15
  • 转载请务必保留本文链接:https://go.coder-hub.com/75573489.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定