文件名称:栈 计算器(c++源码)
文件大小:4KB
文件格式:CPP
更新时间:2013-04-21 14:54:16
c c++ 栈 计算器
/*栈-计算器*/ #include "iostream" using namespace std; #define Max 1000 typedef struct { int a[Max]; int top; }StackNumber;
文件名称:栈 计算器(c++源码)
文件大小:4KB
文件格式:CPP
更新时间:2013-04-21 14:54:16
c c++ 栈 计算器
/*栈-计算器*/ #include "iostream" using namespace std; #define Max 1000 typedef struct { int a[Max]; int top; }StackNumber;