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 ==
相關文章
相關標籤/搜索