Sign in
or
Register
Courses
Textbook
Compiler
Contests
Topics
Courses
C++。 動的データ構造
スタックの練習
Module:
スタックの練習
Problem
4
/5
中置から後置
Problem
中置形式で書かれた算術式を後置形式に変換するプログラムを作成してください。
入力
入力は、式の中置形式を表す文字列です (文字列にスペースはありません)。
インプリント
各オペランドと演算を 1 つのスペースで区切って、指定された式の後置形式を出力します。
例
<頭>
#
入力
出力
<本体>
1
(5+3)*(7+2*4)
5 3 + 7 2 4 * + *
表>
1000
ms
32 Mb
Rules for program design and list of errors in automatic problem checking
Teacher commentary