我是靠谱客的博主 稳重天空,最近开发中收集的这篇文章主要介绍运用switch,用年份算出生肖,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

代码:

public class Test 
{
public static  void main(String[] args) 
{
    int  year = 1996;//输入参数
    int temp =(year-4)%12;
    
        switch (temp)
    {
            case 0:
            System.out.println("鼠");
            break ;
            case 1:
            System.out.println("牛");
            break ;
            case 2:
            System.out.println("虎");
            break ;
            case 3:
            System.out.println("兔");
            break ;
            case 4:
            System.out.println("龙");
            break ;
            case 5:
            System.out.println("蛇");
            break ;
            case 6:
            System.out.println("马");
            break ;
            case 7:
            System.out.println("羊");
            break ;
            case 8:
            System.out.println("猴");
            break ;
            case 9:
            System.out.println("鸡");
            break ;
            case 10:
            System.out.println("狗");
            break ;
            case 11:
            System.out.println("猪");
            break ;
            
            
    }
    
    
 }
}
    

最后

以上就是稳重天空为你收集整理的运用switch,用年份算出生肖的全部内容,希望文章能够帮你解决运用switch,用年份算出生肖所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(42)

评论列表共有 0 条评论

立即
投稿
返回
顶部