#include<iostream>
/*#ifndef NULL
#define NULL = 0
#endif; */
#include"CA_CA.h"
using namespace std;
void main()
{//需要解决的问题:calculater<int> ca 在前,RUN()在后,用户无法选择数据类型
Calculater<int> ca;
ca .GiveTips();
ca .sta.Push(11);
ca .sta.Push(13);
//ca .sta.Push(14);
//ca .sta.Push(15);
ca.Run();
/*ca .sta.Push(12);
ca .sta.Push(16);
cout<<ca .sta.Pop();
cout<<ca .sta.Pop()<<endl;
cout<<ca .sta.Pop()<<endl;
cout<<ca .sta.Pop()<<endl;;
cout<<ca .sta.Pop()<<endl;
cout<<ca .sta.Pop()<<endl;
cout<<"******** 6 *****"<<endl;
*/
//cout<<"size ::= "<<size<<endl;
//cout<<"******** *****"<<endl;
//ca .sta.DisplaySta();
//cout<<"*************"<<endl;
}