用C语言编写一个简单的可以进行加减乘除运算混合运算的计算器
问题描述:
用C语言编写一个简单的可以进行加减乘除运算混合运算的计算器
要求:
1.可以进行 + - * / 四则运算.
2.可以进行混合运算.如 4+5*6=34
只要能先乘除再加减就行,还要完整的程序,别只给一段,而且要能运行.
答
/* Note:Your choice is C IDE */#include "stdio.h"#include "stdlib.h"#include "ctype.h"int n=0;char record[20];float product();float change();float muli(){\x09float summ;\x09summ=product();\x09while(re...