1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-05 02:06:02 +02:00
tldr/pages.ko/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

446 B

bc

계산기의 기능을 수행합니다. 더 많은 정보: https://manned.org/bc.1.

  • 표준 Math 라이브러리를 사용한 대화형 모드에서 계산기 실행하기:

bc -l

  • 계산 결과 표현법:

bc <<< "(1 + 2) * 2 ^ 2"

  • 계산 및 표현되는 소수 자릿수를 10으로 지정하기:

bc <<< "scale=10; 5 / 3"

  • mathlib를 사용하여 sin 및 cosine의 계산식 표현하기:

bc -l <<< "s(1) + c(1)"