C语言进行四则运算的计算器

日期:2021-07-29 02:21:59 人气:1

C语言进行四则运算的计算器

//注意:表达式的格式是像这样的(末尾无=):
//10-5+4+6/2*14*8/4-5*7+2-4*6/2-10*4-6/3
#include<stdio.h>
int jisuan(int num1,char op1,int num2)
{
switch(op1)
{
case '*':
return num1*
    A+
热门评论