Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4560776
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 21, 20262026-05-21T17:58:46+00:00 2026-05-21T17:58:46+00:00

can anybody help me in making a method to generate random number without repetition

  • 0

can anybody help me in making a method to generate random number without repetition in Android?
The maximum number is: prjcts.size(); it’s my JSON Array. And the return value should be in integer.

What I’ve already had is:
int i = (int)(prjcts.size() * Math.random()); I casted the method 3 times, because I need 3 random generated numbers. It works, but I don’t know how to make it without repetition. So those 3 numbers won’t be the same between each other.

Thank you

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-21T17:58:47+00:00Added an answer on May 21, 2026 at 5:58 pm

    Have you tried just using Math.random()?

    Just do some casting magic and you’ll be good to go:

    int index = (int)((double)prjcts.size() * Math.random());
    

    Edit:

    If you want prevent repetition, you could create a list with all the possible indices.

    int max = prjcts.size();
    List<int> indices = new ArrayList<int>(max);
    for(int c = 0; c < max; ++c)
    {
        indices.add(c);
    }
    

    Then each time you want a random index, just pick a random item from the list, removing it after from the list when you’re done

    int arrIndex = (int)((double)indices.size() * Math.random());
    int randomIndex = indices.get(arrIndex);
    indices.remove(arrIndex);
    

    randomIndex is now guaranteed to be a never-before used index of of your JSON list.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can anybody help me to build an XSD file to validate XMLs like these:
Can anybody help me out to know the possible reasons for which Apple store
I would be extremely appreciative if anybody can help me. I am learning C++
Can anybody help me with this: I want select all records from datatable which
can anybody help to explain or give reference on how to send array of
Hi can anybody help me with video capture code for iPhone4. i am using
Hii....i am new to iPhone programming..Can anybody help me out please i have an
I need to kill a running application on iPhone using mobile substrate.Can anybody help
I need to build a XML EDITOR for MAC? Can anybody help me in
Can anybody help me with this? Here's the problem... When I have to code

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.