Java Basics __ Randomly generate numbers between 1~15

Source: Internet
Author: User

 Packagetext;Importjava.util.ArrayList;Importjava.util.List; Public classText { Public Static voidMain (string[] args) {//create a linked list of an integer collectionlist<integer> L =NewArraylist<integer>(); //End-of- chain table Insert data when a list of 15 numbers is present         while(L.size () <15){          inti = (int) (Math.random () *15+1); if(!l.contains (i)) l.add (i); }        //iterating, outputting elements in a linked list//for (int j:l)//System.out.println (j);         for(intI=0;i<l.size (); i++) {System.out.println (L.get (i)); }            }}

Output: (The answer is not unique, random number)

8

15

10

14

9

3

6

11

5

13

4

7

12

1

2

Java Basics __ Randomly generate numbers between 1~15

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.