码迷,mamicode.com
首页 > 其他好文 > 详细

小学四则运算初级版

时间:2018-09-29 21:33:33      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:switch   图片   错误   case   int   ret   info   ++   img   

#include<stdio.h>

#include <stdlib.h>

 

int main()

{

    int i,a,b,c,d;

       printf("这是我编辑的简易四则运算\n");

 

      

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

       {

 

       a=rand()%(99-0+1)+0;

       b=rand()%(99-0+1)+0;

       c=rand()%(4-1+1)+1;

      

       switch(c)

       {

       case(1):printf("%d+%d=\n",a,b);break;

 

       case(2):printf("%d-%d=\n",a,b);break;

       case(3):printf("%d*%d=\n",a,b);break;

       case(4):printf("%d/%d=\n",a,b);break;

       default:printf("错误!\n");

       }

       }

     

    return 0;

}

技术分享图片

 

小学四则运算初级版

标签:switch   图片   错误   case   int   ret   info   ++   img   

原文地址:https://www.cnblogs.com/gaoemm/p/9726594.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!