zhuanhuanm.cpp

来自「数据结构算法 vc++6.0 的程序集包含所有章节,适合学习数据结构,把数据结构」· C++ 代码 · 共 23 行

CPP
23
字号
//zhuanhuanm.cpp
#include<iostream.h>
#include<iomanip.h>
#include<stdio.h>
#include<stdlib.h>
//含有int isdigit(int c)函数的原型
#include<ctype.h>
typedef char ElemType;
#include "zhuanhuan.cpp"

void main()
{printf("\nzhuanhuanm.cpp运行结果:\n");
 printf("输入中缀表达式:");
 char p1[40],p2[40];
 gets(p1);
 zhuanhuan(p1,p2);
 printf("\n输出后缀表达式:");
 printf("%s",p2);cin.get();
}
 


⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?