博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
简单四则运算的实现
阅读量:5020 次
发布时间:2019-06-12

本文共 420 字,大约阅读时间需要 1 分钟。

问题描述:

 

代码如下:

View Code
1 #include 
2 #include
3 using namespace std; 4 5 int calculate(int len,char *expStr) 6 {
7 stack
st; 8 for(int i=0;i
> expStr; 60 int len = strlen(expStr); 61 62 cout << calculate(len,expStr) << endl; 63 }

 

转载于:https://www.cnblogs.com/xuxu8511/archive/2012/03/30/2425789.html

你可能感兴趣的文章
《30天自制操作系统》14_day_学习笔记
查看>>
【LeetCode】040. Combination Sum II
查看>>
[转]软件架构师书籍
查看>>
Calendar
查看>>
Easy Code
查看>>
差分约束系统
查看>>
最新Centos7.6 部署ELK日志分析系统
查看>>
iOS设计模式 - 外观
查看>>
Leetcode: Same Tree
查看>>
Leetcode: Closest Binary Search Tree Value II
查看>>
FB面经 Prepare: Count Unique Island
查看>>
oc73--NSArray使用
查看>>
JavaWeb学习总结(十二)——Session
查看>>
二分算法题目训练(二)——Exams详解
查看>>
RPM-GPG-KEY详解
查看>>
java解析json
查看>>
BUAA_2019_OO_第一单元总结
查看>>
PassGuard密码控件配置
查看>>
列表推导式和字典推导式是什么?
查看>>
软件工程第2次作业——Visual Studio 2017下基于C/C++的VSTS单元测试实践
查看>>