欢迎来到皮皮网官网

【10分钟邮箱源码】【photoshop 1.0的源码】【apktool 源码 if try】c random源码

时间:2024-11-25 01:09:15 来源:《spring源码》

1.关于c语言中的rand()

c  random源码

关于c语言中的rand()

       å› ä¸ºéšæœºæ•°ç§å­ä¸å˜

       ç”¨srand设置一个不同的随机数种子即可

       ä¾‹ç¨‹

       /* rand example: guess the number */

       #include <stdio.h>

       #include <stdlib.h>

       #include <time.h>

       int main ()

       {

        int iSecret,10分钟邮箱源码 iGuess;

        /* initialize random seed: */

        srand ( time(NULL) );

        /* generate secret number: */

        iSecret = rand() % + 1;

        do {

        printf ("Guess the number (1 to ): ");

        scanf ("%d",&iGuess);

        if (iSecret<iGuess) puts ("The secret number is lower");

        else if (iSecret>iGuess) puts ("The secret number is higher");

        } while (iSecret!=iGuess);

        puts ("Congratulations!");

        return 0;

       }

copyright © 2016 powered by 皮皮网   sitemap