黑马程序员技术交流社区

标题: 数组查表法 [打印本页]

作者: China_Riven    时间: 2015-7-18 11:52
标题: 数组查表法
import java.util.Scanner;

/*数组查表法
* use the index of arrays to get the content of arrays.
* */
public class Arrays
{


    public static void main(String[] args) {
        //定义一个数组
        String[] arr = {"","one","two","three","four","five","six","seven"};
        //创建键盘录入对象
        Scanner sc = new Scanner(System.in);
        System.out.println("please set a index:");
       int num = sc.nextInt();
       if(num<1||num>=8) {
           System.out.println("the index which you set is wrong");

       }   else {
           System.out.println(arr[num]);
       }
    }

}






欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2