1 package lianxi1; 2 3 public class text { 4 5 public static void main(String[] args) { 6 7 int x = 23; 8 if(x/2==0) 9 { 10 System.out.println("x为奇数"); 11 } 12 else 13 { 14 System.out.println("x是偶数"); 15 } 判断结果x为奇数。 此题主要考察了 if和else 语句的运用,先定义变量x,然后在用 if和else 语句进行处理,x/2若等于0则输出x为奇数,否则x为偶数!
时间: 2024-10-10 01:05:41