Due date:2023/04/18 (Tue.) 23:30
1.Implement infix to prefix transformation
2.Implement infix to postfix transformation
1. postfix to infix
2.prefix to infix
3.prefix to postfix
4. . . . . .
In Builder, a certain variable, namely "infix", of type "String" can be regarded as charcter arrays, infix[1], infix[2], ... , infix[n] where n = |infix| (the length of "infix").
Note that the index starts from 1 (instead of 0).