Page 1 sur 1

Calculatrice RPN

Posté : dim. 15 avr. 2018 17:39
par Alcibiade
Bonjour,
Je recherche, sans succès, une appli pour disposer sous Mint 18 d'une calculatrice en notation polonaise inverse (NPI en français mais RPN en anglais). Il en existe de nombreuses pouriOS, Android et même pour Ouidose. Quelqu'un aurait-il des lumières ?

Re: Calculatrice RPN

Posté : dim. 15 avr. 2018 19:24
par angelique
dc sous mint

Voir http://www.ibiblio.org/pub/linux/docs/l ... 1-0319.pdf" onclick="window.open(this.href);return false;

calcoo via apt-get install calcoo ou le gestionnaire de paquet synaptic

Marrant je connaissais pas lol

Code : Tout sélectionner

man dc

Code : Tout sélectionner

dc(1)                       General Commands Manual                      dc(1)

NAME
       dc - an arbitrary precision calculator

SYNOPSIS
       dc [-V] [--version] [-h] [--help]
          [-e scriptexpression] [--expression=scriptexpression]
          [-f scriptfile] [--file=scriptfile]
          [file ...]

DESCRIPTION
       dc  is a reverse-polish desk calculator which supports unlimited preci‐
       sion arithmetic.  It also allows you to define and call  macros.   Nor‐
       mally  dc  reads  from the standard input; if any command arguments are
       given to it, they are filenames, and dc reads and executes the contents
       of  the files before reading from standard input.  All normal output is
       to standard output; all error output is to standard error.

       A reverse-polish calculator stores numbers on a stack.  Entering a num‐
       ber  pushes  it  on the stack.  Arithmetic operations pop arguments off
       the stack and push the results.

Code : Tout sélectionner

kitty@kitty ~ $ dc
2
3+
p
5
3
3-
p
0
6
6*
p
36