zoukankan      html  css  js  c++  java
  • 可以随机出30道100以内整数四则运算的C语言程序

    #include<stdio.h>

    #include <stdlib.h>

    #include<conio.h>

    #include<time.h>

    int main()

    {          

        int a=0;

        int b=0;

        int m=0;

        int i,t;

        srand((unsigned)time(NULL));

        for(i=0;i<30;i++)

        {          

            a=rand()%100;

            b=rand()%100;

            m=rand()%4;

            if(a<b)

            {

                t=a;

                a=b;         

                b=t;

            }

        printf("%d",a);

        switch(m)

        {

        case 0:

            printf("+");

            break;

        case 1:

            printf("-");

            break;

        case 2:

            printf("*");

            break;

        case 3:

            printf("/");

            break;

        }

        printf("%d=",b);

        printf(" ");

        }

        return 0;

    }

  • 相关阅读:
    把旧表中数据加入到新表中
    mysql字段-创建时间与更新时间
    springboot-maven依赖源
    刚刚下载的IDEA打不开
    matplotlib-实战01
    实战1-数据清理
    python函数(三)
    交换机配置DHCP中继
    python函数(二)
    用事实说话
  • 原文地址:https://www.cnblogs.com/09-15/p/9765852.html
Copyright © 2011-2022 走看看