Reverse polish notation C# don't work correctly
问题 I write an rpn, with a struktogram. Newest Problem: It is'nt work correctly now. If input string is "5 + ((1 + 2) * 4) - 3" My output is: 5 1 2 + 4 * 3 - + I have to got this result: 5 1 2 + 4 * + 3 - Edited the source * That was the original problem, but helped me, and now the original mistakes fixed: * , At the debug when the loop or int i = 12, the c value is 0\0 or something else and this value is added to output (name: formula) string as a '(' bracket. And I don't know why. And the last