2016年5月10日

括号计算器

摘要: //这计算器支持括号功能,格式例子3+(3*3)## ,后面打两个#算结束,还有阶乘和次方等功能留给同学们自己完善#include using namespace std; template struct Node {//这个是数据结构模板,char和int都可以用 T data; Node* next; }; template class stack { Node... 阅读全文

posted @ 2016-05-10 21:29 Kooing 阅读(597) 评论(0) 推荐(0) 编辑

导航