标签:style blog http color 使用 io strong 数据
前言:本篇文章讲解如何利用栈,完成一个简单的算术表达式的计算过程。为了简单起见,首先假设操作数是整数,而运算符为四种类型:+、-、*、/
|
4.测试代码:
public static void main(String[] args) { // TODO Auto-generated method stub System.out.println("7+(1+1)*2 = " + evaluateExpression("7+(1+1)*2")); } |
显示结果:
标签:style blog http color 使用 io strong 数据
原文地址:http://www.cnblogs.com/inghzhang/p/3901334.html