“Java aléatoire entre deux cordes” Réponses codées

Java aléatoire entre deux cordes

import java.util.Random;
public class RandomSelect {

    public static void main (String [] args) {

         String [] arr = {"A", "B", "C", "D"};
         Random random = new Random();

         // randomly selects an index from the arr
         int select = random.nextInt(arr.length); 

         // prints out the value at the randomly selected index
         System.out.println("Random String selected: " + arr[select]); 
    }
}
Troubled Tortoise

Java aléatoire entre deux cordes

String[] s = {"your", "array", "of", "strings"};

Random ran = new Random();
String s_ran = s[ran.nextInt(s.length)];
Troubled Tortoise

Réponses similaires à “Java aléatoire entre deux cordes”

Questions similaires à “Java aléatoire entre deux cordes”

Plus de réponses similaires à “Java aléatoire entre deux cordes” dans Java

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code