根据用户输入编码,输出课程名称
Posted dean-0
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了根据用户输入编码,输出课程名称相关的知识,希望对你有一定的参考价值。
实现代码:
import java.util.InputMismatchException;
import java.util.Scanner;
public class ExceptionDome1
static Scanner input = new Scanner(System.in);
public static void main(String[] args)
//定义课程数组
String[] courses = "C#编程","JAVA编程","C++编程";
System.out.println("请输入课程代号(1~3之间的数字):");
int choose = 0;
//用户输入可能输入不在1~3之间的数字以及输入非数字的异常行为
try
choose = input.nextInt();
System.out.println(courses[choose-1]);
catch(InputMismatchException e)
//捕捉非数字异常
System.out.println("您输入的是非数字!");
catch(ArrayIndexOutOfBoundsException e)
//捕捉不在1~3之间的数字异常
System.out.println("您输入的数字不在1~3之间!");
finally
System.out.println("欢迎提出建议!");
运行结果:
以上是关于根据用户输入编码,输出课程名称的主要内容,如果未能解决你的问题,请参考以下文章
用c语言编一个程序:根据用户输入的数字(1~7),输出英文的星期名称。怎么做
通过用户输入城市名称检索邮政编码的最佳 API(仅限美国)? [关闭]