欢迎来到皮皮网网首页

【兔子网页动画源码下载】【如何添加源码】【潜江麻将源码】c random源码

来源:星座物语源码 时间:2024-11-24 07:30:49

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,兔子网页动画源码下载 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;

       }