Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/sota1235/reverse-polish-nation

逆ポーランド記法で計算できるよ
https://github.com/sota1235/reverse-polish-nation

Last synced: about 12 hours ago
JSON representation

逆ポーランド記法で計算できるよ

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