使用你对数组,输入和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");
}
}
}
但老师说我必须使用输入,即扫描仪。请帮忙