mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-29 18:33:52 +02:00

* bc: update es translation * bc: update fr translation * bc: update it translation * bc: update ja translation * bc: update ko translation * bc: update zh translation * bc: update pt_BR translation
20 lines
430 B
Markdown
20 lines
430 B
Markdown
# bc
|
|
|
|
> Calcolatore.
|
|
> Maggiori informazioni: <https://manned.org/bc.1>.
|
|
|
|
- Esegui in modalità interattiva utilizzando la libreria math della standard library:
|
|
|
|
`bc -l`
|
|
|
|
- Calcola il risultato di un'espressione:
|
|
|
|
`bc <<< "(1 + 2) * 2 ^ 2"`
|
|
|
|
- Calcola un'espressione forzando il numero di decimali usati a 10:
|
|
|
|
`bc <<< "scale=10; 5 / 3"`
|
|
|
|
- Calcola un'espressione con seno e coseno utilizzando mathlib:
|
|
|
|
`bc -l <<< "s(1) + c(1)"`
|