我不知道我是否含糊不清,但我的主要目标是创建一个程序,在该程序中它要求用户输入一组单词(任何给定数量),然后告诉我哪个是第一个和最后一个在字母表中,最短和最长。到目前为止,我有这个:
public static void main(String[] args)
{
Scanner Keyboard = new Scanner(System.in);
double[] Words = getNewArrayFrom(Keyboard);
displayList(Words);
int choice = 1;
while(choice > 0)
{
System.out.println("What would you like to do?");
System.out.println("1) Enter a new list of up to over 9000 words.");
System.out.println("2) Find the shortest, longest, and first and last alphabetically from the list.");
System.out.println("0) Exit the Program");
choice = Integer.parseInt(Keyboard.nextLine());
if(choice < 0 || choice > 2)
{
System.out.println("Invalid Choice Number " + choice);
choice = 1;
continue;
}
if(choice == 1)
{
//Enter the Words one at a time
System.out.println("Enter each of the words.");
for(int i = 0; i < 9001; i++)
{
System.out.print((i+1) + "> ");
Words = Keyboard.nextLine();
Words = getNewArrayFrom(Keyboard);
}
}
else if(choice == 2)
{
}
}
}
}
对不起,我不知道我在做什么。我都是凭记忆写的,我真的不知道该怎么办。
我的主要观点只是试图允许 getNewArrayFrom() 方法从输入字符串创建一个数组(如果选择)。如果您至少可以指出如何让它打印最短和最长以及第一个和最后一个字母单词的方式或方向,那么我将永远感激不尽!
对不起,英语不是我的母语。