No.
Chat with our AI personalities
It would be easier to answer, if you explained what the 'two types of coding' were.
Take advantage of Java's easy-to-use Random class.// Create a new Random object.// The constructor accepts a single Long argument.// This is the seed for the random generator.// Using the current time is standard for most applications.Random rnd = new Random(System.currentTimeMillis());// A call to nextInt(n) will generate a random value from 0 to n-1// This is typical in programming languages, and in order to get a specific range we need// to tweak it a bit.rnd.nextInt(n);// This will give you a random int from (start) to (start + range - 1)rnd.nextInt(range) + start;
i need coding for bus booking
Random numbers that are generated by a computer are pseudo-random (not really random), but they will pass enough statistical tests for randomness to be useful in simulation random processes. Java has random number generators in the standard libraries. See the related link if you need more information.
Need to know what you have. Model and serial number.