• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: Generating random numbers
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Generating random numbers


  • Subject: Re: Generating random numbers
  • From: Scott Andrew <email@hidden>
  • Date: Wed, 5 Aug 2009 11:30:52 -0700

This is not a cocoa question and is a basic C question. The simple solution is to keep a 2nd array of numbers already generated.

Sent from my iPhone

On Aug 5, 2009, at 3:44 AM, Mahaboob <email@hidden> wrote:

I need to produce 15 random numbers between 1 to 16 without repeating any
number. I used the code like


   int i,j;
   for(i=0;i<15;i++){
       j =random() % 15 +1;
       NSLog(@"No: %d => %d \n",i,j);
       srandom(time(NULL)+i);
   }
But some numbers are repeating.
How can I do it without repeating the numbers?

Thanks in advance
Mahaboob


_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden
_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:
This email sent to email@hidden


References: 
 >Generating random numbers (From: Mahaboob <email@hidden>)

  • Prev by Date: Re: How can we distinguish which alert we are talking about?
  • Next by Date: iPhone: How can I rotate UIImageView without blockiness?
  • Previous by thread: Re: Generating random numbers
  • Next by thread: Re: Generating random numbers
  • Index(es):
    • Date
    • Thread