3.1 表达式求值(递归实现)

#include<iostream> #include<cstring> using namespace std; int term(); int expr(); int factor(); int expr() { int result = term(); bool more = true; while(more) { char c = cin.peek(); if(c ==
相关文章
相关标签/搜索