某公司举办了一个联谊活动,现在要统计参加活动人数的单双,如果是单数,返回false,偶数返回true 知识点: golang中,%为取余操作,奇偶性的判断可以通过取余来判断,如果对2取余,余数为0则为偶数,如果为1,则为奇数。
示例1
输入
1
输出
false
加载中...
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param x int整型 参加活动人数 * @return bool布尔型 */ public boolean odevity (int x) { // write code here } }
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param x int整型 参加活动人数 * @return bool布尔型 */ bool odevity(int x) { // write code here } };
#coding:utf-8 # # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param x int整型 参加活动人数 # @return bool布尔型 # class Solution: def odevity(self , x ): # write code here
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param x int整型 参加活动人数 * @return bool布尔型 */ public bool odevity (int x) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param x int整型 参加活动人数 * @return bool布尔型 */ function odevity( x ) { // write code here } module.exports = { odevity : odevity };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param x int整型 参加活动人数 # @return bool布尔型 # class Solution: def odevity(self , x: int) -> bool: # write code here
package main import "fmt" /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param x int整型 参加活动人数 * @return bool布尔型 */ func odevity( x int ) bool { // write code here }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param x int整型 参加活动人数 * @return bool布尔型 */ bool odevity(int x ) { // write code here }
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param x int整型 参加活动人数 # @return bool布尔型 # class Solution def odevity(x) # write code here end end
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param x int整型 参加活动人数 * @return bool布尔型 */ def odevity(x: Int): Boolean = { // write code here } }
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param x int整型 参加活动人数 * @return bool布尔型 */ fun odevity(x: Int): Boolean { // write code here } }
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param x int整型 参加活动人数 * @return bool布尔型 */ public boolean odevity (int x) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param x int整型 参加活动人数 * @return bool布尔型 */ export function odevity(x: number): boolean { // write code here }
public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param x int整型 参加活动人数 * @return bool布尔型 */ func odevity ( _ x: Int) -> Bool { // write code here } }
struct Solution{ } impl Solution { fn new() -> Self { Solution{} } /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param x int整型 参加活动人数 * @return bool布尔型 */ pub fn odevity(&self, x: i32) -> bool { // write code here } }
1
false