获取输入并存储在数组中,然后随机打印名称

时间:2016-03-16 12:14:19

标签: java eclipse

使用你对数组,输入和for循环的新发现的知识来创建一个程序,该程序从用户接收文本输入(名称),将每个存储在数组的元素中,然后打印出一个名称(使用Math随机生成) .random())必须离开救生艇的人。

到目前为止我已经

public class Int 
{

    public static void main(String[] args) 
    {
        // TODO Auto-generated method stub


        {
            String[] names = { "mary", "sue", "jen", "sally", "pam", "jordan", "bob", "calvin", "kevin", "mike", "brendan" };

            int length = names.length;

            for (int i = 0; i < length; i++)
            {

                System.out.print(" ");
            }
            int rand = (int) (Math.random() * length);

            System.out.print(names[rand] + " will be thrown overboard");
        } 

    }
}

但老师说我必须使用输入,即扫描仪。请帮忙

0 个答案:

没有答案