Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sota1235/reverse-polish-nation
逆ポーランド記法で計算できるよ
https://github.com/sota1235/reverse-polish-nation
Last synced: about 12 hours ago
JSON representation
逆ポーランド記法で計算できるよ
- Host: GitHub
- URL: https://github.com/sota1235/reverse-polish-nation
- Owner: sota1235
- Created: 2013-12-18T08:34:33.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2013-12-18T08:36:17.000Z (almost 11 years ago)
- Last Synced: 2023-08-05T20:12:08.591Z (over 1 year ago)
- Language: JavaScript
- Size: 102 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Reverse Polish Nation
## What
* 逆ポーランド記法で計算するフォームを作ります
* 某氏からやれと言われた
* プログラミング初歩のトレーニングでたまに使われるらしい
* Javascript
## How
* 数字と記号を半角スペースを空けて入力
* 記号が出てきた時点で直前2つの値を計算
* Example
- "1 2 +" -> 1 + 2 = 3
- "1 2 \*" -> 1 * 2 = 2
- "1 2 3 + +" -> ( 2 + 3 ) + 1 = 6