Problem F: 选择题
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:142
Solved:73
Description
前缀表达式 * + a b + c d 的中缀形式是()
A. (a + b) * (c + d)
B. a + b * c + d
C. a * b + c * d
D. (d + c) * (b + a)
A. (a + b) * (c + d)
B. a + b * c + d
C. a * b + c * d
D. (d + c) * (b + a)
Output
#include<bits/stdc++.h> using namespace std; int main(){ cout << "答案"; return 0; }