fff.cpp
上传用户:hyb6888
上传日期:2016-01-24
资源大小:5186k
文件大小:0k
源码类别:

输入法编程

开发平台:

Visual C++

  1. // fff.cpp : Defines the entry point for the console application.
  2. //
  3. #include "stdafx.h"
  4. #include "windows.h"
  5. #include "formula.h"
  6. int main(int argc, char* argv[])
  7. {
  8. char ss[1000];
  9. formula fm;
  10. double tt;
  11. fm.caculate("22+5-");
  12. if(fm.getformulaVar(&tt))
  13. MessageBox(0,"表达式有错误","错误",0);
  14. else
  15. {
  16. sprintf(ss,"%f",tt);
  17. MessageBox(0,ss,"计算结果",0);
  18. }
  19. // getchar();
  20. return 0;
  21. }