Como usar o resultado do último cálculo em um novo cálculo no wcalc?

0

Em wcalc , como posso fazer algo como

-> 1+2
 = 3
-> X+1
 = 4

onde X é igual ao resultado do último cálculo (ou seja, 3)?

    
por PetaspeedBeaver 22.04.2016 / 13:41

2 respostas

2

A variável especial a contém o resultado da última resposta

-> 1 + 2
 = 3
-> a + 5
 = 8
-> 

No arquivo wcalc README

Some special notes about variables - two things are reserved:

  • a - this variable represents the last answer, and may be used in expressions.
  • q - this variable is reserved in the command-line version (it means quit), and cannot be used in expressions.

Also, built-in constants cannot be re-defined, although they are treated as variables in all other cases.

    
por 22.04.2016 / 14:41
2

De acordo com o comando help , a última resposta é armazenada na variável a .

-> 1+2
  = 3
-> a+1
  = 4

Você também pode usar qualquer outra variável para armazenar o resultado intermediário:

-> X=1+2
 X = 3
-> X=X+1
 X = 4
    
por 22.04.2016 / 14:36