using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Linq.Expressions; using System.Text; using System.Threading.Tasks; namespace MaiCore { /// <summary> /// /// </summary> public class L…
运行: (a+b)*c 后缀表达式:ab+c* 赋值: Enter the a : 10 Enter the b : 3 Enter the c : 5 结果为:65 代码是我从的逻辑判断系统改过来的,可进行扩展或者修改 注意:1.适用变量为单字符. 2.表达式不含空格 PS:如果想让变量为多字符(字符串),那么变量与变量.变量与运算符之间应该用空格分开 #include<iostream> #include<map> #include<string> #include…