40 第四十练 计算后缀表达式 给定一个后缀表达式(逆波兰表达式),编写一个程序计算其值。例如,输入 “3 4 +” 应输出 7。 第三十九练答案 #include <stdio.h> // 汉诺塔函数 void hanoi(int n, char source, char auxiliary,