1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-29 18:33:52 +02:00
tldr/pages.it/common/bc.md
spageektti a2368251ed
bc: update translations (#12957)
* 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
2024-06-13 14:25:28 +02:00

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)"`