zoukankan      html  css  js  c++  java
  • 时间作为种子(随机数的产生)

    #include <stdio.h>

     

    #include <stdlib.h>

     

    #include <time.h>

     
     

    int main(void)

     

    {

     

      int i = 0;

     

     srand((unsigned)time(NULL)); //本地时间为种子

     

      while(i<30)

     

      {

     

        int a = rand()%100; //产生随机数

     

        int b = rand()%100;

     

        int j;

     

          j = rand()%4; //产生随机符号0到3分别代表四则运算

     

        printf("%d", a);

     

        switch(j)

     

        {

     

          case 0:

     

            printf("+");

     

            break;

     

          case 1:

     

            printf("-");

     

            break;

     

          case 2:

     

            printf("*");

     

            break;

     

          case 3:

     

            printf("/");

     

            break;

     
     

        }

     
     

        printf("%d", b);

     

        printf(" = ");

     

        i++;

     

      }

     
     

      return 0;

     

    }    

    梦里不知身是客,一晌贪欢。
  • 相关阅读:
    MongoDB的固定集合
    MongoDB的导入导出
    MongoDB的数据备份与恢复
    MongoDB的索引
    MongoDB简单CRUD场景
    MongoDB入门
    NOSQL概念入门
    Java静态代理和动态代理
    a=a+1背后的内存模型和CPU高速缓存
    SpringCloud的学习记录(6)
  • 原文地址:https://www.cnblogs.com/dccmmtop/p/4840419.html
Copyright © 2011-2022 走看看