摘要: 四则运算随机生成0~99的两个数进行四则运算要注意除法分母为0的情况预计用时30分钟实际用时60分钟代码:#include #include #include char OperatorChar() {int op;op=rand()%4;switch(op){case 0:return '+';c... 阅读全文
posted @ 2015-03-26 13:52 39吴梓健 阅读(150) 评论(4) 推荐(0)