Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 372 Bytes

README.md

File metadata and controls

10 lines (8 loc) · 372 Bytes

Post Calculator

연산자 (+ - * / ( ))를 지원하는 후위 연산계산기

  • Input specification
    • 숫자와 연산자를 입력받는다.
    • 숫자는 양수와 소수점 실수를 지원한다.
    • 연산자는 +, -, *, /, (, ) 를 지원한다.
    • 연산자는 맨 앞이나 뒤에 올 수 없다.
    • 연산자는 연속해서 올 수 없다.