码迷,mamicode.com
首页 > 编程语言 > 详细

Java if语句

时间:2018-10-11 14:31:17      阅读:249      评论:0      收藏:0      [点我收藏+]

标签:class   sys   system   tin   col   close   ==   语句   div   

package com.xuyigang1234.chp01;
import java.util.*;
public class Demo2 {
    public static void main(String[] args) {
        System.out.println("请输入月份:");
        Scanner scanner = new Scanner(System.in);
        int n = scanner.nextInt();
        scanner.close();
        if (n==11) {
            System.out.println("当前为11月份");
        }else if(n==10){
            System.out.println("当前不为10月份");
        }else {
            System.out.println("当前即不为11月份也不为10月份");
        }            
        
    }
}

 

Java if语句

标签:class   sys   system   tin   col   close   ==   语句   div   

原文地址:https://www.cnblogs.com/xyg-zyx/p/9772008.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!