博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
switch处理多分支结构
阅读量:5098 次
发布时间:2019-06-13

本文共 1134 字,大约阅读时间需要 3 分钟。

import java.util.Scanner;/** * Created by liwenj on 2017/7/17. */public class test9 {    public static void main(String[] args) {        Scanner input=new Scanner(System.in);        System.out.println("1.登录系统");        System.out.println("2.退出系统");        System.out.print("请输入数字:");        int check=input.nextInt();       switch (check){           case 1:               System.out.println("主菜单");               System.out.println("1.客户信息管理");               System.out.println("2.购物结算");               System.out.println("3.回馈");               System.out.println("4.退出");               System.out.println("请输入数字");               int op=input.nextInt();               switch (op){                   case 1:                       System.out.println("1.添加客户信息");                       System.out.println("2.修改客户信息");                       break;                   case 2:                       System.out.println("1.幸运抽奖");                       System.out.println("2.生日问候");               }               break;           case 2:               System.exit(1);//退出程序       }    }}

 

转载于:https://www.cnblogs.com/lwj820876312/p/7193975.html

你可能感兴趣的文章
软件开发和软件测试,我该如何选择?(蜗牛学院)
查看>>
基本封装方法
查看>>
生活大爆炸之何为光速
查看>>
[Typescript] Specify Exact Values with TypeScript’s Literal Types
查看>>
Illustrated C#学习笔记(一)
查看>>
理解oracle中连接和会话
查看>>
Scrapy实战篇(三)之爬取豆瓣电影短评
查看>>
HDU 5510 Bazinga KMP
查看>>
[13年迁移]Firefox下margin-top问题
查看>>
Zookeeper常用命令 (转)
查看>>
Bootstrap栅格学习
查看>>
程序员的数学
查看>>
聚合与组合
查看>>
洛谷 P2089 烤鸡【DFS递归/10重枚举】
查看>>
我眼中的技术地图
查看>>
lc 145. Binary Tree Postorder Traversal
查看>>
在centos上开关tomcat
查看>>
黑马程序员——2 注释
查看>>
android dialog使用自定义布局 设置窗体大小位置
查看>>
ionic2+ 基础
查看>>