欢迎来到皮皮网网首页

【长沙溯源码鱼胶】【高仿奇艺视频源码】【图像中值滤波的软件源码】c random源码

来源:mybatis原理源码分析 时间:2024-11-26 22:39:54

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;

       }