9.判断是否偶数

package test;

import java.util.Scanner;

public class NumJudge {
    /**
     * 判断一个数字是否为偶数
     */
    public static void main(String[] args) {
        Scanner input=new Scanner(System.in);
        System.out.print("请输入一个数字:");
        int num=input.nextInt();
        String result=(num%2==0)?"偶数":"奇数";
        System.out.println(num+"是"+result);
    }

}
时间: 2024-10-27 11:06:46

9.判断是否偶数的相关文章

用if else判断奇数偶数.

1 public class 判断奇数偶数 { 2 3 public static void main(String[] args) { 4 5 int num=14; 6 7 if(num%2==0) 8 { 9 System.out.println("num是偶数"); 10 } 11 else 12 { 13 14 System.out.println("num是奇数"); 15 } 16 // TODO 自动生成的方法存根 17 18 } 19 20 } n

1119: 零起点学算法26——判断奇偶数

1119: 零起点学算法26--判断奇偶数 Time Limit: 1 Sec  Memory Limit: 64 MB   64bit IO Format: %lldSubmitted: 2419  Accepted: 1508[Submit][Status][Web Board] Description 输入一个整数,判断是奇数还是偶数 Input 输入1个正整数(多组数据) Output 如果是奇数,输出odd否则输出even(每组数据一行) Sample Input 2 Sample O

简单的python判断基偶数练习

#!/usr/bin/env python# Author:William Huangnum = int(input('please input your number:')) # 用int()表示输入的数必须为整型 if num%2 != 0: # 取余运算,如果输入的数除以2的结果不等于0时,则输出两种判断. print('这是一个奇数') else: print('这是一个偶数') 输出结果: please input your number:3 这是一个奇数 进程已结束,退出代码0 程序

判断奇数偶数

using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace 奇偶判断 { class Program { static void Main(string[] args) { Console.WriteLine("请输入数字"); int a = int.Parse(Console.ReadLine()); int b; b = a % 2; switch(

iOS 判断奇偶数

if (_bigUrlArray.count%2==0) {//如果是偶数 a = i*(_bigUrlArray.count/count);//每个线程图片初始数 b = (i+1)*(_bigUrlArray.count/count);//每个线程图片数 }else{//如果是奇数 a = i*((_bigUrlArray.count+1)/count);//每个线程图片初始数 b = (i+1)*((_bigUrlArray.count+1)/count);//每个线程图片数 }

判断奇偶数【C】

#include<stdio.h>int main(){    int a;    scanf("%d",&a);    if(a%2==0)    {        printf("Yes!");    }    else printf("No!");    return 0;}

Problem D: 零起点学算法24——判断奇偶数

#include<stdio.h> int main() { int a; while(scanf("%d",&a)!=EOF) if(a%2==0) printf("odd"); else printf("even"); return 0; } 原文地址:https://www.cnblogs.com/chenlong991223/p/9744492.html

判断奇偶数

//流行的"程序员" public static bool IsOdd(int n) { while (true) { switch (n) { case 1: return true; case 0: return false; } n -= 2; } } // 中规中矩的程序员 public static bool IsOdd(int n) { return (n % 2 == 1) ? true : false; } // 有经验的C#程序员 public static bool

奇偶数的判断:取余、按位与

过去判断奇数偶数的编程习惯一直是除以2取余.最近在看高性能javascript书,也晓得了更快的判断方法,就是和1按位与. 因为奇数的二进制表示法的最低位是1,偶数的最低位是0.那么用这个数去和1按位与,如果是奇数,那么结果就是1:偶数结果则是0. <?php $i = 1; $j = 2; echo $i%2 == 1; echo $j%2 == 0; echo ($i & 1) == 1; echo ($j & 1) == 0; -