jeudi 1 février 2018

How do I display the actual input instead of option number?

I'm trying to get this to display the actual input instead of the option number.

import java.util.*;

public class RandomGenerator {

public static void main(String[] args) {

   int length;
   Scanner input = new Scanner(System.in);
   System.out.println("How many options?"); //user input food options
   length = input.nextInt();

   String[] names = new String[length];
   for(int counter = 0; counter < length; counter++){
       System.out.println("Enter option #" + (counter+1) + ":");
       names[counter] = input.next();   
   }

   input.close();

   System.out.println("You are going to eat " + new Random().nextInt(names.length));




Aucun commentaire:

Enregistrer un commentaire