473,394 Members | 1,701 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

Why will this not generate a random number!?

This has been driving me crazy. I've done basic C in school, but my
education is mainly based on object oriented design theory where Java
is our tool. For some reason, while helping a friend with a C
Programming lab. I cannot for the life of me generate a random number.
i don't know what is wrong. please help.

#include <stdio.h>
#include <stdlib.h>
#include <math.h>

#define RAND_MAX 32768

int main(void)
{
float b;

b = ((float)rand()/RAND_MAX);
printf("Random Number: %f", b);

system("PAUSE");
return 0;
}
Nov 14 '05 #1
15 4914
John Cassidy wrote:
This has been driving me crazy. I've done basic C in school, but my
education is mainly based on object oriented design theory where Java
is our tool. For some reason, while helping a friend with a C
Programming lab. I cannot for the life of me generate a random number.
i don't know what is wrong. please help.
rand() will generate spesific "random", se my addition to the code below.
#include <stdio.h>
#include <stdlib.h>
#include <math.h>

#define RAND_MAX 32768

int main(void)
{
float b;
// The function srand() is used to seed the random sequence generated by
// rand(). For any given seed, rand() will generate a specific "random"
// sequence over and over again.
srand(time(NULL));
b = ((float)rand()/RAND_MAX);
printf("Random Number: %f", b);

system("PAUSE");
return 0;
}


If you're on a UNIX system you might want to consider using /dev/urandom
to generate random.

--
Regards
Hans-Christian Egtvedt
Nov 14 '05 #2
jo**********@gmail.com (John Cassidy) writes:
This has been driving me crazy. I've done basic C in school, but my
education is mainly based on object oriented design theory where Java
is our tool. For some reason, while helping a friend with a C
Programming lab. I cannot for the life of me generate a random number.
i don't know what is wrong. please help.

#include <stdio.h>
#include <stdlib.h>
#include <math.h>

#define RAND_MAX 32768

int main(void)
{
float b;

b = ((float)rand()/RAND_MAX);
printf("Random Number: %f", b);

system("PAUSE");
return 0;
}


Thank you for posting a complete program (too many people post
fragments or pseudo-code). But a little more detail on what behavior
you're actually seeing would be helpful. You say it doesn't generate
a random number; what does it do?

You don't need <math.h>; rand() is declared in <stdlib.h>

Don't define RAND_MAX yourself, it's defined for you in <stdlib.h>.

Your output doesn't end in a newline; on systems, this might cause
your output not to appear at all. system("PAUSE") won't work if the
system doesn't have a PAUSE command.

Your system should have documentation on the rand() and srand()
functions. Find it and read it.

I think your actual problem is probably answered by entry 13.17 of the
C FAQ, <http://www.eskimo.com/~scs/C-faq/q13.17.html>. Questions
13.15 through 13.20 deal with random numbers. Read the whole section.
Read the whole FAQ.

If you call rand() without first calling srand(), it's equivalent to
calling rand() after calling srand(1). This always gives you the same
sequence of numbers. On one system I just tried, the first call to
rand() gave me 0.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <*> <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Nov 14 '05 #3
John Cassidy wrote:
This has been driving me crazy. I've done basic C in school, but my
education is mainly based on object oriented design theory where Java
is our tool. For some reason, while helping a friend with a C
Programming lab. I cannot for the life of me generate a random number.
i don't know what is wrong. please help.
Before we get started here, please note that this is fully covered in
the FAQ, and it is normally accepted practice in newsgroups to check the
FAQ before posting. Before you shout, "But I didn't know there was a
FAQ," note also that it is normally accepted practice to lurk in
newsgroups before posting; many people here have links to the FAQ in
their sigs and, if you had lurked for anything like the expected period,
you would have seen one of the periodic postings of the FAQ itself.

#include <stdio.h>
#include <stdlib.h>
#include <math.h>

#define RAND_MAX 32768
No, you don't do this. RAND_MAX is a macro defined by your implementation.

int main(void)
{
float b;

You ought to, unless you want the same sequence everytime you run the
program, seed the random number generator once with srand() before using
it. See the FAQ for details.
b = ((float)rand()/RAND_MAX);
OK, so you want b in the range [0,1]. Generally, however, you really
want b in the range [0,1):
b = rand()/(RAND_MAX+1.);
printf("Random Number: %f", b);

system("PAUSE");
You are getter off not relying on the host system having a command named
"PAUSE".
getchar();
would accomplish the same thing, wouldn't it? return 0;
}

Nov 14 '05 #4
jo**********@gmail.com (John Cassidy) wrote in message news:<6f**************************@posting.google. com>...
This has been driving me crazy. I've done basic C in school, but my
education is mainly based on object oriented design theory where Java
is our tool. For some reason, while helping a friend with a C
Programming lab. I cannot for the life of me generate a random number.
i don't know what is wrong. please help.

#include <stdio.h>
#include <stdlib.h>
#include <math.h>

#define RAND_MAX 32768

int main(void)
{
float b;

b = ((float)rand()/RAND_MAX);
printf("Random Number: %f", b);

system("PAUSE");
return 0;
}


Try to seed with srand()
Nov 14 '05 #5
In <2u*************@uni-berlin.de> Martin Ambuhl <ma*****@earthlink.net> writes:
John Cassidy wrote:
#include <stdio.h>
#include <stdlib.h>
#include <math.h>

#define RAND_MAX 32768


No, you don't do this. RAND_MAX is a macro defined by your implementation.

int main(void)
{
float b;


You ought to, unless you want the same sequence everytime you run the
program, seed the random number generator once with srand() before using
it. See the FAQ for details.
b = ((float)rand()/RAND_MAX);


OK, so you want b in the range [0,1]. Generally, however, you really
want b in the range [0,1):
b = rand()/(RAND_MAX+1.);


Have a closer look at his definition of RAND_MAX. If his implementation
is using a 15-bit generator (like the one shown in the C standard), he is
effectively dividing by RAND_MAX+1 :-)

Dan
--
Dan Pop
DESY Zeuthen, RZ group
Email: Da*****@ifh.de
Currently looking for a job in the European Union
Nov 14 '05 #6
In <6f**************************@posting.google.com > jo**********@gmail.com (John Cassidy) writes:
This has been driving me crazy. I've done basic C in school, but my
education is mainly based on object oriented design theory where Java
is our tool. For some reason, while helping a friend with a C
Programming lab. I cannot for the life of me generate a random number.
i don't know what is wrong. please help.

#include <stdio.h>
#include <stdlib.h>
#include <math.h>
What did you include <math.h> for?
#define RAND_MAX 32768
If your compiler didn't complain about the redefinition of RAND_MAX, get
a better one. If it did, you have absolutely no excuse for having
ignored it!
int main(void)
{
float b;

b = ((float)rand()/RAND_MAX);
printf("Random Number: %f", b);
Why do you think this number is not random enough? If you want different
numbers on different runs, open your favourite C book and read the
specification of the rand() and srand() functions. Or read the FAQ,
which is a MUST before posting for the first time, anyway.
system("PAUSE");
You don't need this crap. If you're using a poorly designed IDE that
closes the program console as soon as the program terminates, getchar()
is the function you want to call here. It is also supposed to fix the
bug in your printf call, which is not terminating the line properly.
return 0;
}


Dan
--
Dan Pop
DESY Zeuthen, RZ group
Email: Da*****@ifh.de
Currently looking for a job in the European Union
Nov 14 '05 #7
Stuart Gerchick wrote:
jo**********@gmail.com (John Cassidy) wrote in message
This has been driving me crazy. I've done basic C in school, but
my education is mainly based on object oriented design theory
where Java is our tool. For some reason, while helping a friend
with a C Programming lab. I cannot for the life of me generate a
random number. i don't know what is wrong. please help.

#include <stdio.h>
#include <stdlib.h>
#include <math.h>

#define RAND_MAX 32768

int main(void)
{
float b;

b = ((float)rand()/RAND_MAX);
printf("Random Number: %f", b);
system("PAUSE");
return 0;
}


Try to seed with srand()


Maybe because he should be using double, not float?

--
Chuck F (cb********@yahoo.com) (cb********@worldnet.att.net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home.att.net> USE worldnet address!

Nov 14 '05 #8
Martin Ambuhl <ma*****@earthlink.net> wrote:
John Cassidy wrote:
system("PAUSE");


You are getter off not relying on the host system having a
command named "PAUSE".
getchar();
would accomplish the same thing, wouldn't it?


Not entirely: "pause" waits for any keypress, whereas getchar()
usually requires the Enter key.
Nov 14 '05 #9
Old Wolf wrote:
Martin Ambuhl <ma*****@earthlink.net> wrote:
John Cassidy wrote:

system("PAUSE");


You are getter off not relying on the host system having a
command named "PAUSE".
getchar();
would accomplish the same thing, wouldn't it?

Not entirely: "pause" waits for any keypress, whereas getchar()
usually requires the Enter key.


Can you really predict with confidence that "pause" works that way on
any platform?
Nov 14 '05 #10

"Dan Pop" <Da*****@cern.ch> wrote in message
news:cl***********@sunnews.cern.ch...
In <6f**************************@posting.google.com > jo**********@gmail.com (John Cassidy) writes:
This has been driving me crazy. I've done basic C in school, but my
education is mainly based on object oriented design theory where Java
is our tool. For some reason, while helping a friend with a C
Programming lab. I cannot for the life of me generate a random number.
i don't know what is wrong. please help.

#include <stdio.h>
#include <stdlib.h>
#include <math.h>


What did you include <math.h> for?
#define RAND_MAX 32768


If your compiler didn't complain about the redefinition of RAND_MAX, get
a better one. If it did, you have absolutely no excuse for having
ignored it!
int main(void)
{
float b;

b = ((float)rand()/RAND_MAX);
printf("Random Number: %f", b);


Why do you think this number is not random enough? If you want different
numbers on different runs, open your favourite C book and read the
specification of the rand() and srand() functions. Or read the FAQ,
which is a MUST before posting for the first time, anyway.
system("PAUSE");


You don't need this crap. If you're using a poorly designed IDE that
closes the program console as soon as the program terminates, getchar()
is the function you want to call here. It is also supposed to fix the
bug in your printf call, which is not terminating the line properly.

Please elaborate further on the last line. What is printf supposed to do?
how should printf terminate the line?
Thanks
Mike
return 0;
}


Dan
--
Dan Pop
DESY Zeuthen, RZ group
Email: Da*****@ifh.de
Currently looking for a job in the European Union

Nov 14 '05 #11
>This has been driving me crazy. I've done basic C in school, but my
education is mainly based on object oriented design theory where Java
is our tool. For some reason, while helping a friend with a C
Programming lab. I cannot for the life of me generate a random number.
rand() does not generate random numbers. It generates pseudo-random
numbers. The difference may not mean much to you in your application,
but for serious users of cryptography (e.g. spies), it can mean the
difference between life and death.
i don't know what is wrong. please help.

#include <stdio.h>
#include <stdlib.h>
#include <math.h>

#define RAND_MAX 32768
You do not get to define RAND_MAX. The implementation does that.

int main(void)
{
float b;

b = ((float)rand()/RAND_MAX);
printf("Random Number: %f", b);
How do you know the result you got is NOT pseudo-random?

rand() is defined to generate consistent sequences if you
are concerned with getting the same result on repeated invocations.
In that case, look up srand().

system("PAUSE"); PAUSE: command not found return 0;
}


Gordon L. Burditt
Nov 14 '05 #12


Michael wrote:
"Dan Pop" <Da*****@cern.ch> wrote in message
news:cl***********@sunnews.cern.ch...
In <6f**************************@posting.google.com >


jo**********@gmail.com (John Cassidy) writes:

[snip]
printf("Random Number: %f", b); printf("Random Number: %f\n", b);

[snip] system("PAUSE");


You don't need this crap. If you're using a poorly designed IDE that
closes the program console as soon as the program terminates, getchar()
is the function you want to call here. It is also supposed to fix the
bug in your printf call, which is not terminating the line properly.


Please elaborate further on the last line. What is printf supposed to do?
how should printf terminate the line?


The last output of your program should throw out a linebreak ('\n',
see the above correction of the original code).
Otherwise, it may be that you will not see the output (which also
could be achieved by playing with the prompt) nor actually get it.
Cheers
Michael
--
E-Mail: Mine is a gmx dot de address.

Nov 14 '05 #13
In <84**************************@posting.google.com > ol*****@inspire.net.nz (Old Wolf) writes:
Martin Ambuhl <ma*****@earthlink.net> wrote:
John Cassidy wrote:
> system("PAUSE");


You are getter off not relying on the host system having a
command named "PAUSE".
getchar();
would accomplish the same thing, wouldn't it?


Not entirely: "pause" waits for any keypress, whereas getchar()
usually requires the Enter key.


Is it really *any* key, or only *some* keys? If the latter, then a
function waiting for a well defined key is preferable.

Dan
--
Dan Pop
DESY Zeuthen, RZ group
Email: Da*****@ifh.de
Currently looking for a job in the European Union
Nov 14 '05 #14
CBFalconer <cb********@yahoo.com> writes:
Stuart Gerchick wrote:
jo**********@gmail.com (John Cassidy) wrote in message
This has been driving me crazy. I've done basic C in school, but
my education is mainly based on object oriented design theory
where Java is our tool. For some reason, while helping a friend
with a C Programming lab. I cannot for the life of me generate a
random number. i don't know what is wrong. please help.

#include <stdio.h>
#include <stdlib.h>
#include <math.h>

#define RAND_MAX 32768

int main(void)
{
float b;

b = ((float)rand()/RAND_MAX);
printf("Random Number: %f", b);
system("PAUSE");
return 0;
}


Try to seed with srand()


Maybe because he should be using double, not float?


Um, no. Double would only give you more precision (with a number that
has only 15 bits of precision in the first place). The argument to
printf() is promoted to double anyway, so there's no type conflict
with "%f" format.

--
Keith Thompson (The_Other_Keith) ks***@mib.org <http://www.ghoti.net/~kst>
San Diego Supercomputer Center <*> <http://users.sdsc.edu/~kst>
We must do something. This is something. Therefore, we must do this.
Nov 14 '05 #15
Keith Thompson wrote:
CBFalconer <cb********@yahoo.com> writes:
Stuart Gerchick wrote:
jo**********@gmail.com (John Cassidy) wrote in message

This has been driving me crazy. I've done basic C in school, but
my education is mainly based on object oriented design theory
where Java is our tool. For some reason, while helping a friend
with a C Programming lab. I cannot for the life of me generate a
random number. i don't know what is wrong. please help.

#include <stdio.h>
#include <stdlib.h>
#include <math.h>

#define RAND_MAX 32768

int main(void)
{
float b;

b = ((float)rand()/RAND_MAX);
printf("Random Number: %f", b);
system("PAUSE");
return 0;
}

Try to seed with srand()


Maybe because he should be using double, not float?


Um, no. Double would only give you more precision (with a number that
has only 15 bits of precision in the first place). The argument to
printf() is promoted to double anyway, so there's no type conflict
with "%f" format.


You're right. I missed the fact that he is generating only one
random value from the initial state.

--
Chuck F (cb********@yahoo.com) (cb********@worldnet.att.net)
Available for consulting/temporary embedded and systems.
<http://cbfalconer.home.att.net> USE worldnet address!
Nov 14 '05 #16

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: vishal | last post by:
i want to generate a random number of a fixed length so how can i do this ?? i know some function which returns a single random character at a time but is there any built-in function which...
12
by: Jim Michaels | last post by:
I need to generate 2 random numbers in rapid sequence from either PHP or mysql. I have not been able to do either. I get the same number back several times from PHP's mt_rand() and from mysql's...
6
by: Anamika | last post by:
I am doing a project where I want to generate random numbers for say n people.... These numbers should be unique for n people. Two people should not have same numbers.... Also the numbers...
3
by: FAQ server | last post by:
----------------------------------------------------------------------- FAQ Topic - How do I generate a random integer in ? ----------------------------------------------------------------------- ...
3
by: td0g03 | last post by:
Like the titles says I'm suppose to generate a random number then divide that by a number inputed by a user. The random number can range from 2-8. I tried to do the code, but I get some weird result...
4
by: fatimahtaher | last post by:
Hi, I am supposed to create a program that generates a random number and then asks the user to guess the number (1-100). The program tells the user if he guessed too high or too low. If he...
7
by: teh.sn1tch | last post by:
I created a random number generator for an application that uses a MersenneTwister class I found on the net. Basically I generate two random numbers from the MersenneTwister class and use each one...
9
by: Chelong | last post by:
Hi All I am using the srand function generate random numbers.Here is the problem. for example: #include<iostream> #include <time.h> int main() {
3
by: drpertree | last post by:
I'm writing in C. I am trying to get a simple way to generate a random number between 0 and 1. I'm not sure of two things - how to limit a random number to 0 or 1 and how to reset it every time I...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.