zoukankan      html  css  js  c++  java
  • 解决方案

    #include<stdio.h>

    #include<Windows.h>

    #include<time.h>

    void main()

     {

     int a, b, c, d,i,m,n;

      float p, q;

     srand(unsigned( time(NULL)));

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

     {

            a = rand() % 100;

            b = rand() % 100;

             c = rand() % 5;

             switch (c)

             {

             case 0: printf("%d + %d = ", a, b);

                 break;

            case 1:if (a < b)

            {

                       d = a;

                       a = b;

                      b = d;

            }

                    printf("%d - %d = ", a, b);

                    break;

           case 2:printf("%d * %d = ", a, b);

                 break;

             case 3:

               while (b == 0)

                 {

                    b = rand() % 100;

                }

                 printf("%d / %d = ", a, b);

                 break;

             case 4:

                a = rand() % 100;

                 b = rand() % 100;

                 m = rand() % 100;

                 n = rand() % 100;

                 c = rand() %4 ;

                 while (b == 0)

                 {

                     b = ran

  • 相关阅读:
    Computer Vision: Algorithms and ApplicationsのImage processing
    LOJ6079「2017 山东一轮集训 Day7」养猫
    网络七层协议及其作用
    观察者模式深度剖析
    NIO 中的读和写
    NIO的通道和缓冲区
    NIO简介
    使用OutputStream向屏幕上输出内容
    对象的序列化
    PushBackInputStream回退流
  • 原文地址:https://www.cnblogs.com/wushao12345/p/9751661.html
Copyright © 2011-2022 走看看