本帖最后由 丁乐 于 2012-6-3 09:50 编辑
怎么让代码运行以后 输入数字键以外的键 同样返回 输入错误 ,- import java.io.*;
- class Demo {
- public static void main(String args[]) throws Exception{
- System.out.println("请输入一个1~7的数,将给你返回一周中的日期!");
- while(true){
- BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
- String lines =br.readLine();
- int x=Integer.parseInt(lines);
- if(x>=1&&x<=7){
- System.out.println(showWeek(x));
- }else{
- System.out.println("输入错误!");
- }
- }
- }
- static String showWeek(int x){
- String[] arr={"星期一","星期二","星期三","星期四","星期五","星期六","星期日"};
- return arr[x-1];
- }
- }
复制代码 |
|