随机数函数和静态变量

作者:追风剑情 发布于:2019-12-10 19:35 分类:C

示例

s_and_r.c文件

  1. //next是具有内部链接的文件作用域静态变量
  2. //其他文件中的函数无法访问next
  3. static unsigned long int next = 1; /* 种子 */
  4.  
  5. //采用ANSI C可移值的标准算法
  6. int rand1(void)
  7. {
  8. /*生成伪随机数的魔术公式*/
  9. next = next * 1103515245 + 12345;
  10. return (unsigned int)(next / 65536) % 32768;
  11. }
  12.  
  13. void srand1(unsigned int seed)
  14. {
  15. next = seed;
  16. }

Main.c文件

  1. //Visual Studio中加上这句才可以使用scanf()
  2. //否则只能使用scanf_s()
  3. #define _CRT_SECURE_NO_WARNINGS
  4. #include <stdio.h>
  5. #include <string.h>
  6. #include <ctype.h>
  7. //malloc()、free()
  8. #include <stdlib.h>
  9. #include <time.h>
  10.  
  11. //函数的定义在另一个.c文件时,用extern关键字声明。
  12. extern void srand1(unsigned int x);
  13. extern int rand1(void);
  14.  
  15. //argc: 参数个数 argv[]: 参数数组
  16. //int main(int argc, char **argv)
  17. int main(int argc, char *argv[])
  18. {
  19. int count;
  20. unsigned seed;
  21.  
  22. printf("Please enter your choice for seed.\n");
  23. while (scanf("%u", &seed) == 1)
  24. {
  25. srand1(seed); /* 重置种子 */
  26. for (count = 0; count < 5; count++)
  27. printf("%d\n", rand1());
  28. printf("Please enter next seed (q to quit):\n");
  29. }
  30. printf("Done\n");
  31.  
  32. //也可以用系统时间作为随机种子
  33. /*
  34. time()返回值的类型名是time_t,具体类型与系统有关。
  35. 一般而言,time()接受的参数是一个time_t类型对象的地址,
  36. 而时间值就储存在传入的地址上。当然,也可以传入空指针(0)作为参数,
  37. 这种情况下,只能通过返回值机制来提供值。
  38. */
  39. srand1((unsigned int) time(0));
  40. for (count = 0; count < 5; count++)
  41. printf("%d\n", rand1());
  42.  
  43. system("pause");
  44. return 0;
  45. }

运行测试

1111.png

标签: C语言

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号