摘要:
```c++ #include #include #include #include #include using namespace std; int get_priority(char &op) { if (op == '+' || op == '-') return 1; if (op == '*' || op == '/') return 2; } double cul(double &a 阅读全文
posted @ 2020-03-02 21:13
ailinal
阅读(236)
评论(0)
推荐(0)
浙公网安备 33010602011771号