Symbian Random Number

Source: Internet
Author: User
Tags random seed

No matter what programs are developed, especially games like card games and puzzles, and games like Tetris,
Random number generator is essential. In the standard C language, seed () and rand () are used to generate seeds and values.
In the Symbian platform, what method is used? The following is an example.

TTime thetime (kaknexnoteinitializetime );
Thetime. universaltime ();
Tint64 randseed (thetime. int64 (); // uses the time to initialize the Random Seed.
Tint number (Math: rand (randseed) % kaknexnoterandomnumberrange); // This is called
The generated result is placed in number.

Returns a random number between two numbers.

Tint getrangnum (tint startnum, tint endnum)
{
TTime thetime (startnum );
Thetime. universaltime ();
Tint64 randseed (thetime. int64 ());
Tint number (startnum + Math: rand (randseed) % (endnum-startnum ));

Return number;

}

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.