Currency: Difference between revisions

14,183 bytes added ,  11 days ago
added RPL
m (→‎{{header|F#}}: Corrected header as suggested on the Count examples/Full list/Tier 4 talk page)
(added RPL)
 
(22 intermediate revisions by 11 users not shown)
Line 40:
{{trans|Nim}}
 
<langsyntaxhighlight lang="11l">F currency(units, subunits)
R BigInt(units) * 100 + subunits
 
Line 63:
print(‘Total price before tax: ’to_str(beforeTax).rjust(maxlen))
print(‘Tax: ’to_str(tax).rjust(maxlen))
print(‘Total with tax: ’to_str(total).rjust(maxlen))</langsyntaxhighlight>
 
{{out}}
Line 79:
When using the Dollar_IO package to print each value, the constant is converted into a Dollar, then printed. All of
the arbitrary-precision arithmetic operations are done at compile-time, incurring no runtime cost.
<langsyntaxhighlight lang="ada">with Ada.Text_IO;
 
procedure Currency is
Line 104:
Dollar_IO.Put(total_with_tax);
Ada.Text_IO.New_Line;
end Currency;</langsyntaxhighlight>
{{out}}
<pre>
Line 114:
=={{header|ALGOL 68}}==
{{works with|ALGOL 68G|Any - tested with release 2.8.3.win32}}
<langsyntaxhighlight lang="algol68">BEGIN
# currency calculations #
# simple fixed point type, LONG INT is 64-bit in Algol 68G #
Line 178:
print( ( "tax: ", TOSTRING tax, newline ) );
print( ( "total: ", TOSTRING total, newline ) )
END</langsyntaxhighlight>
{{out}}
<pre>
Line 190:
The AppleScript core language doesn't recognise currency values specifically and its numbers don't have the precision required for this task, but through ASObjC, it's able to use Foundation classes which do.
 
<langsyntaxhighlight lang="applescript">use AppleScript version "2.4" -- OS X 10.10 (Yosemite) or later
use framework "Foundation"
 
Line 242:
{quantity:2, unitPrice:currencySymbol & 2.86}}
set taxRate to 7.65
return billTotal(quantitiesAndPrices, taxRate, currencySymbol)</langsyntaxhighlight>
 
{{output}}
<langsyntaxhighlight lang="applescript">"Subtotal: $22,000,000,000,000,005.72
Tax: $1,683,000,000,000,000.44
Total: $23,683,000,000,000,006.16"</langsyntaxhighlight>
 
=={{header|AWK}}==
===version 1===
<syntaxhighlight lang="awk">
<lang AWK>
# syntax: GAWK -M -f CURRENCY.AWK
# using GNU Awk 4.1.1, API: 1.1 (GNU MPFR 3.1.2, GNU MP 5.1.2)
Line 272:
exit(0)
}
</syntaxhighlight>
</lang>
<p>Output:</p>
<pre>
Line 284:
</pre>
===version 2===
<syntaxhighlight lang="awk">
<lang AWK>
# syntax: GAWK -M -f CURRENCY2.AWK
# using GNU Awk 4.1.1, API: 1.1 (GNU MPFR 3.1.2, GNU MP 5.1.2)
Line 308:
exit(0)
}
</syntaxhighlight>
</lang>
<p>Output:</p>
<pre>
Line 319:
total 23683000000000006.16
</pre>
=={{header|BBC BASIC}}==
{{works with|BBC BASIC for Windows}}
<syntaxhighlight lang="bbcbasic"> REM No need for BigNum library.
REM This language uses 80bit (10 bytes!) for real values internally.
Price = 4E15 * 5.50 + 2.0 * 2.86
Tax = Price * .0765
Total = Price + Tax
 
REM Number printing will use 2 decimal places and 21 positions zone
@%=&020215
PRINT "Price = $" Price
PRINT "Tax = $" Tax
PRINT "Total = $" Total</syntaxhighlight>
{{out}}
<pre>Price = $ 22000000000000005.72
Tax = $ 1683000000000000.44
Total = $ 23683000000000006.16</pre>
 
=={{header|Bracmat}}==
The amounts <code>before-tax</code>, <code>tax</code>, <code>after-tax</code> are computed as rounded amounts in dollar cents.
<langsyntaxhighlight lang="bracmat"> div$((4000000000000000*550+2*286)+1/2,1):?before-tax
& div$(!before-tax*765/10000+1/2,1):?tax
& !before-tax+!tax:?after-tax
Line 343 ⟶ 360:
fix$!after-tax
\n
)</langsyntaxhighlight>
''Output''
<pre>before-tax 22000000000000005.72
Line 357 ⟶ 374:
</pre>
One remark about the code, notice that for setting all other variables the '''mpf_set_d''' function is used:
<syntaxhighlight lang="c">
<lang C>
mpf_set_d(burgerUnitPrice,5.50);
mpf_set_d(milkshakePrice,2 * 2.86);
mpf_set_d(burgerNum,4000000000000000);
mpf_set_d(milkshakeNum,2);
</syntaxhighlight>
</lang>
But when it comes to the tax rate, it's '''mpf_set_str''':
<syntaxhighlight lang="c">
<lang C>
mpf_set_str(tax,"0.0765",10);
</syntaxhighlight>
</lang>
The reason is a weird rounding off error which happens if the mpf_set_d function is used. Documentation and example usages of GMP are very rare on the net possibly because it is used almost exclusively by academia and high tech industries. The implementation below is the result of a lot of fiddling, gotchas and lessons learnt, just how good programming should always be :)
{{libheader|GMP}}
<syntaxhighlight lang="c">
<lang C>
 
#include<stdio.h>
Line 400 ⟶ 417:
return 0;
}
</syntaxhighlight>
</lang>
Output:
<pre>
Line 410 ⟶ 427:
=={{header|C sharp|C#}}==
The built in C# type decimal has a max value of 79228162514264337593543950335.
<langsyntaxhighlight lang="csharp">using System;
using System.Collections.Generic;
 
Line 464 ⟶ 481:
}
}
}</langsyntaxhighlight>
{{out}}
<pre>Total before tax: $22,000,000,000,000,005.72
Line 473 ⟶ 490:
{{libheader|clojurewerkz/money}}
 
<langsyntaxhighlight lang="clojure">(require '[clojurewerkz.money.amounts :as ma])
(require '[clojurewerkz.money.currencies :as mc])
(require '[clojurewerkz.money.format :as mf])
Line 483 ⟶ 500:
(println "Total before tax: " (mf/format pre-tax))
(println " Tax: " (mf/format tax))
(println " Total with tax: " (mf/format (ma/plus pre-tax tax))))</langsyntaxhighlight>
 
{{out}}
Line 493 ⟶ 510:
{{libheader|io.randomseed/bankster}}
 
<langsyntaxhighlight lang="clojure">(require '[io.randomseed.bankster.money :as m])
 
(let [burgers (m/mul #money[USD 5.50] 4000000000000000)
Line 501 ⟶ 518:
(println "Total before tax: " (m/format pre-tax))
(println " Tax: " (m/format tax))
(println " Total with tax: " (m/format (m/add pre-tax tax))))</langsyntaxhighlight>
 
{{out}}
Line 516 ⟶ 533:
{{works with|GNU Cobol|2.1}}
 
<langsyntaxhighlight lang="cobol"> >>SOURCE FREE
IDENTIFICATION DIVISION.
PROGRAM-ID. currency-example.
Line 543 ⟶ 560:
DISPLAY " Total with tax: " total-edited
.
END PROGRAM currency-example.</langsyntaxhighlight>
 
{{out}}
Line 552 ⟶ 569:
Total with tax: $23683000000000006.16
</pre>
 
=={{header|Common Lisp}}==
Let us just use the built-in and convenient rationals (which use two bignums for numerator and denominator).
 
<syntaxhighlight lang="lisp">(defun print-$ (rat &key (prefix "") (stream t))
(multiple-value-bind (dollars cents) (truncate rat)
(format stream "~A~D.~D~%" prefix dollars (round (* 100 cents)))))
 
(defun compute-check (order-alist tax-rate)
(let* ((total-before-tax
(loop :for (amount . price) in order-alist
:sum (* (rationalize price) amount)))
(tax (* (rationalize tax-rate) total-before-tax)))
(print-$ total-before-tax :prefix "Total before tax: ")
(print-$ tax :prefix "Tax: ")
(print-$ (+ total-before-tax tax) :prefix "Total with tax: ")))
 
(compute-check '((4000000000000000 . 5.5) (2 . 2.86)) 0.0765)</syntaxhighlight>
 
{{out}}
<pre>Total before tax: 22000000000000005.72
Tax: 1683000000000000.44
Total with tax: 23683000000000006.16</pre>
 
A reader macro can be used as extra nice icing on the cake:
<syntaxhighlight lang="lisp">(defun read-$ (stream char)
(declare (ignore char))
(let* ((str (with-output-to-string (out)
;; TODO: read integer, if dot, read dot and another integer
(loop :for next = (peek-char nil stream t nil t)
:while (or (digit-char-p next) (char= next #\.))
:do (write-char (read-char stream t nil t) out))))
(dot-pos (position #\. str))
(dollars (parse-integer str :end dot-pos))
(cents (if dot-pos
(/ (parse-integer str :start (+ dot-pos 1))
(expt 10 (- (length str) (+ dot-pos 1))))
0)))
(+ dollars cents)))
(set-macro-character #\$ #'read-$ t)
 
(defun print-$ (rat &key (prefix "") (stream t))
(multiple-value-bind (dollars cents) (truncate rat)
(format stream "~A~D.~D~%" prefix dollars (round (* 100 cents)))))
 
(defun compute-check (order-alist tax-rate)
(let* ((total-before-tax
(loop :for (amount . price) in order-alist
:sum (* price amount)))
(tax (* (rationalize tax-rate) total-before-tax)))
(print-$ total-before-tax :prefix "Total before tax: ")
(print-$ tax :prefix "Tax: ")
(print-$ (+ total-before-tax tax) :prefix "Total with tax: ")))
 
(compute-check '((4000000000000000 . $5.5) (2 . $2.86)) 0.0765)</syntaxhighlight>
 
=={{header|Delphi}}==
{{libheader| System.SysUtils}}
Line 558 ⟶ 631:
{{libheader| Velthuis.BigIntegers}}
{{Trans|Go}}
<syntaxhighlight lang="delphi">
<lang Delphi>
program Currency;
 
Line 693 ⟶ 766:
Writeln(' Total: ', total.ToString: 22);
readln;
end.</langsyntaxhighlight>
 
=={{header|F_Sharp|F#}}==
<langsyntaxhighlight lang="fsharp">open System
 
let hamburgers = 4000000000000000M
Line 710 ⟶ 783:
printfn "Total before tax:\t$%M" <| Math.Round (total, 2)
printfn " Tax:\t$%M" <| Math.Round (tax, 2)
printfn " Total:\t$%M" <| Math.Round (totalWithTax, 2)</langsyntaxhighlight>
 
{{out}}
Line 722 ⟶ 795:
=={{header|Factor}}==
Factor's <tt>ratio</tt> type can handle arbitrary-precision calculations with rational numbers. The <tt>money</tt> vocabulary implements convenience words for treating rationals as money. The <tt>DECIMAL:</tt> parsing word is used to convert the tax rate <tt>0.0765</tt> to a ratio <tt>153/2000</tt>. The <tt>money.</tt> word is used to print the subtotal <tt>22000000000000005+18/25</tt>, tax <tt>1683000000000000+21879/50000</tt>, and total <tt>23683000000000006+7879/50000</tt> formatted as you would expect.
<langsyntaxhighlight lang="factor">USING: combinators.smart io kernel math math.functions money ;
 
10 15 ^ 4 * 5+50/100 * ! hamburger subtotal
Line 732 ⟶ 805:
"Total before tax: " write [ money. ] 2dip
"Tax: " write [ money. ] dip
"Total with tax: " write money.</langsyntaxhighlight>
{{out}}
<pre>
Line 743 ⟶ 816:
=={{header|FreeBASIC}}==
Pero el subtotal y el tax los muestra redondeados. Y no encuentro el porqué.
<langsyntaxhighlight lang="freebasic">Dim As Longint hamburger_p = 550
Dim As Longint hamburger_q = 4000000000000000
Dim As Longint hamburger_v = hamburger_p * hamburger_q
Line 758 ⟶ 831:
Print Using " tax #####################.##";tax/100
Print Using " total #####################.##";subtotal/10+tax/100
Sleep</langsyntaxhighlight>
 
 
Line 764 ⟶ 837:
Frink tracks units of measure through all calculations, so you can specify quantities as "dollar", "cent", etc.
 
<langsyntaxhighlight lang="frink">
st = 4000000000000000 * 5.50 dollars + 2 * 2.86 dollars
tax = round[st * 7.65 percent, cent]
Line 771 ⟶ 844:
println["Tax: " + format[tax, "dollars", 2]]
println["Total: " + format[total, "dollars", 2]]
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 777 ⟶ 850:
Tax: 1683000000000000.44 dollars
Total: 23683000000000006.16 dollars
</pre>
 
=={{header|FutureBasic}}==
<syntaxhighlight lang="futurebasic">
local fn Lunch_Invoice( burger_price as CFStringRef, burger_amount as CFStringRef, shake_price as CFStringRef, shake_amount as CFStringRef, tax as CFStringRef )
'~'1
DecimalNumberRef burgerPriceDecimal = fn DecimalNumberWithString( burger_price )
DecimalNumberRef burgerAmountDecimal = fn DecimalNumberWithString( burger_amount )
DecimalNumberRef burgersDecimal = fn DecimalNumberByMultiplyingBy( burgerPriceDecimal, burgerAmountDecimal )
DecimalNumberRef shakePriceDecimal = fn DecimalNumberWithString( shake_price )
DecimalNumberRef shakeAmountDecimal = fn DecimalNumberWithString( shake_amount )
DecimalNumberRef shakesDecimal = fn DecimalNumberByMultiplyingBy( shakePriceDecimal, shakeAmountDecimal )
DecimalNumberRef taxDecimal = fn DecimalNumberWithString( tax )
DecimalNumberRef subtotalDecimal = fn DecimalNumberByAdding( burgersDecimal, shakesDecimal )
DecimalNumberRef taxTotalDecimal = fn DecimalNumberByMultiplyingBy( subtotalDecimal, taxDecimal )
DecimalNumberRef adjTaxTotalDecimal = fn DecimalNumberByAdding( taxTotalDecimal, fn DecimalNumberWithString( @"0.01" ) )
DecimalNumberRef billTotalDecimal = fn DecimalNumberByAdding( subtotalDecimal, adjTaxTotalDecimal )
 
CFStringRef burgersString = fn DecimalNumberString( burgersDecimal )
CFStringRef shakesString = fn DecimalNumberString( shakesDecimal )
CFStringRef taxTotalString = fn DecimalNumberString( adjTaxTotalDecimal )
CFStringRef billTotalString = fn DecimalNumberString( billTotalDecimal )
 
printf @"%@", fn StringByPaddingToLength( @"", 55, @"-", 0 )
printf @"Item Price Quantity Cost"
printf @"Hamburgers %6s %18s %18s", fn StringUTF8String( burger_price ), fn StringUTF8String( burger_amount ), fn StringUTF8String( burgersString )
printf @"Milkshakes %6s %18s %18s", fn StringUTF8String( shake_price ), fn StringUTF8String( shake_amount ), fn StringUTF8String( shakesString )
printf @"%@", fn StringByPaddingToLength( @"", 55, @"-", 0 )
printf @"%34s %@", fn StringUTF8String( @"Subtotal:" ), fn DecimalNumberString( subtotalDecimal )
printf @"%35s %@", fn StringUTF8String( @" Tax: " ), fn StringSubstringToIndex( taxTotalString, len(taxTotalString) - 3 )
printf @"%34s %@", fn StringUTF8String( @" Total:" ), fn StringSubstringToIndex( billTotalString, len(billTotalString) - 3 )
end fn
 
NSLog( @"%@", fn WindowPrintViewString( 1 ) )
 
HandleEvents
</syntaxhighlight>
{{output}}
<pre>
-------------------------------------------------------
Item Price Quantity Cost
Hamburgers 5.50 4000000000000000 22000000000000000
Milkshakes 2.86 2 5.72
-------------------------------------------------------
Subtotal: 22000000000000005.72
Tax: 1683000000000000.44
Total: 23683000000000006.16
 
</pre>
 
=={{header|Go}}==
<langsyntaxhighlight lang="go">package main
 
import (
Line 867 ⟶ 988:
fmt.Printf(" Tax: %22s\n", tax)
fmt.Printf(" Total: %22s\n", total)
}</langsyntaxhighlight>
{{out}}
<pre>
Line 876 ⟶ 997:
 
=={{header|Haskell}}==
<langsyntaxhighlight lang="haskell">import Data.Fixed
import Text.Printf
 
Line 895 ⟶ 1,016:
printAmount "Subtotal" subtotal
printAmount "Tax" tx
printAmount "Total" total</langsyntaxhighlight>
 
{{out}}
Line 909 ⟶ 1,030:
We use a naive implementation with arbitrary precision (rational) numbers:
 
<langsyntaxhighlight lang="j">require 'format/printf'
Items=: ;: 'Hamburger Milkshake'
Line 929 ⟶ 1,050:
)
 
makeBill Items;Prices;Quantities</langsyntaxhighlight>
{{out}}
<pre> Item Price Quantity Value
Line 942 ⟶ 1,063:
 
=={{header|Java}}==
<langsyntaxhighlight lang="java">import java.math.*;
import java.util.*;
 
Line 980 ⟶ 1,101:
System.out.printf(" Total: %20.2f%n", subtotal.add(tax));
}
}</langsyntaxhighlight>
 
<pre>Subtotal: 22000000000000005.72
Line 987 ⟶ 1,108:
 
=={{header|JavaScript}}==
<langsyntaxhighlight lang="javascript">const money = require('money-math')
 
let hamburgers = 4000000000000000
Line 1,011 ⟶ 1,132:
console.log('Tax:', taxTotal)
console.log('Total:', total)
</syntaxhighlight>
</lang>
 
=={{header|jq}}==
Line 1,024 ⟶ 1,145:
results as dollars and cents, and when calculating the taxes.
 
<langsyntaxhighlight lang="jq">def lpad($len): tostring | ($len - length) as $l | (" " * $l)[:$l] + .;
 
# print as dollars and cents
Line 1,067 ⟶ 1,188:
" Total before tax: \($before_tax | dollars($width))",
" - tax: \($taxes | cents | dollars($width))",
" Total after tax: \($after_tax | dollars($width))"</langsyntaxhighlight>
{{out}}
<pre>
Line 1,078 ⟶ 1,199:
{{works with|Julia|1.2}}
 
<langsyntaxhighlight lang="julia">using Printf
 
p = [big"5.50", big"2.86"]
Line 1,090 ⟶ 1,211:
@printf " - tot. before tax: %20.2f \$\n" beftax
@printf " - tax: %20.2f \$\n" tax
@printf " - tot. after tax: %20.2f \$\n" afttax</langsyntaxhighlight>
 
{{out}}
Line 1,098 ⟶ 1,219:
 
=={{header|Kotlin}}==
<langsyntaxhighlight lang="scala">// version 1.1.2
 
import java.math.BigDecimal
Line 1,116 ⟶ 1,237:
println("Tax thereon @ 7.65% : ${fmt.format(tax)}")
println("Total price after tax : ${fmt.format(price + tax)}")
}</langsyntaxhighlight>
 
{{out}}
Line 1,124 ⟶ 1,245:
Total price after tax : 23683000000000006.16
</pre>
 
=={{header|Lua}}==
Using the lbc library for arbitrary precision support.
<syntaxhighlight lang="lua">C = setmetatable(require("bc"), {__call=function(t,...) return t.new(...) end})
C.digits(6) -- enough for .nn * .nnnn ==> .nnnnnn, follow with trunc(2) to trim trailing zeroes
 
subtot = (C"4000000000000000" * C"5.50" + C"2" * C"2.86"):trunc(2) -- cosmetic trunc
tax = (subtot * C"0.0765" + C"0.005"):trunc(2) -- rounding trunc
total = (subtot + tax):trunc(2) -- cosmetic trunc
 
print(("Before tax: %20s"):format(subtot:tostring()))
print(("Tax : %20s"):format(tax:tostring()))
print(("With tax : %20s"):format(total:tostring()))</syntaxhighlight>
{{out}}
<pre>Before tax: 22000000000000005.72
Tax : 1683000000000000.44
With tax : 23683000000000006.16</pre>
 
=={{header|M2000 Interpreter}}==
This task written in M2000 Environment running on Wine 3.6, in a Linux Ubuntu Studio. M2000 environment is an ActiveX object, written with VB6, which use many types from [https://en.wikipedia.org/wiki/Variant_type COM Variant Type].
<syntaxhighlight lang="m2000 interpreter">
<lang M2000 Interpreter>
Module Currency_Task {
Locale 1033
Line 1,193 ⟶ 1,331:
}
Currency_Task
</syntaxhighlight>
</lang>
Optional with $ and thousands separator (a smaller version from above)
<syntaxhighlight lang="m2000 interpreter">
<lang M2000 Interpreter>
Module Currency_Task {
Locale 1033
Line 1,238 ⟶ 1,376:
}
Currency_Task
</syntaxhighlight>
</lang>
{{out}}
<pre style="height:30ex;overflow:scroll">
Line 1,258 ⟶ 1,396:
 
=={{header|Maple}}==
<syntaxhighlight lang="maple">
<lang Maple>
 
Digits := 50;
Line 1,279 ⟶ 1,417:
totalprice := totaltax + total;
printf("%.2f\n",totalprice);
</syntaxhighlight>
</lang>
{{out}}
<pre>
Line 1,288 ⟶ 1,426:
 
=={{header|Mathematica}} / {{header|Wolfram Language}}==
<langsyntaxhighlight Mathematicalang="mathematica">total = 4000000000000000 Rationalize[5.50] + 2 Rationalize[2.86];
AccountingForm[N[total, 20], {\[Infinity], 2}]
tax = total Rationalize[0.0765];
AccountingForm[N[tax, 20], {\[Infinity], 2}]
AccountingForm[N[total + tax, 20], {\[Infinity], 2}]</langsyntaxhighlight>
{{out}}
<pre>22000000000000005.72
Line 1,303 ⟶ 1,441:
Nim doesn’t provide a standard module to deal with decimal values. There exist some third party modules but we have chosen to use the “bignum” library which provides big integers and big rationals.
 
<langsyntaxhighlight Nimlang="nim">import strutils
import bignum
 
Line 1,396 ⟶ 1,534:
echo "Total price before tax: ", beforeTaxStr.align(length)
echo "Tax: ", taxStr.align(length)
echo "Total with tax: ", totalStr.align(length)</langsyntaxhighlight>
 
{{out}}
Line 1,405 ⟶ 1,543:
=={{header|OCaml}}==
 
Using the [https://githubocaml.comorg/janestreetp/bignumdecimal/0.3.0 Bignumdecimal] library.
 
<syntaxhighlight lang ="ocaml">#require "bignum" ;;
let () =
let open Decimal in (* bring all functions and operators into scope locally *)
let s = of_string in
let i = of_int in
 
let p1hamburgers = Bignum.((of_strings "40000000000000004e15") * (of_float_decimals "5.50))" ;;in
let p2milkshakes = Bignum.((of_inti 2) * (of_float_decimals "2.86))" ;;in
let tax_rate = s "7.65e-2" in
let subtotal = hamburgers + milkshakes in
let tax = subtotal * tax_rate in
let total = subtotal + tax in
 
Printf.printf
let r1 = Bignum.(p1 + p2) ;;
"Subtotal: %20s
let r2 = Bignum.(r1 * (of_float_decimal (7.65 /. 100.))) ;;
Tax: %20s
let r3 = Bignum.(r1 + r2) ;;
Total: %20s\n"
 
(to_string (round ~n:2 subtotal))
let my_to_string v =
(to_string (round ~n:2 tax))
Bignum.(v |> round_decimal ~dir:`Nearest ~digits:2
(to_string (round ~n:2 total))
|> to_string_hum ~decimals:2) ;;
</syntaxhighlight>
 
let () =
Printf.printf "before tax: %s\n" (my_to_string r1);
Printf.printf "tax: %s\n" (my_to_string r2);
Printf.printf "total: %s\n" (my_to_string r3);
;;</lang>
{{out}}
<pre>
Subtotal: 22000000000000005.72
$ opam install bignum
Tax: 1683000000000000.44
$ opam install utop
Total: 23683000000000006.16
$ eval $(opam env)
$ utop currency.ml
before tax: 22000000000000005.72
tax: 1683000000000000.44
total: 23683000000000006.16
</pre>
 
=={{header|Perl}}==
<langsyntaxhighlight lang="perl">use Math::Decimal qw(dec_canonise dec_add dec_mul dec_rndiv_and_rem);
 
@check = (
Line 1,468 ⟶ 1,605:
($q, $r) = dec_rndiv_and_rem("FLR", @_[0], 1);
$q . substr((sprintf "%.2f", $r), 1, 3);
}</langsyntaxhighlight>
{{out}}
<pre>Item Price Quantity Extension
Line 1,480 ⟶ 1,617:
=={{header|Phix}}==
{{libheader|Phix/mpfr}}
<!--<langsyntaxhighlight Phixlang="phix">(phixonline)-->
<span style="color: #0080807060A8;">withrequires</span><span style="color: #0000FF;">(</span><span style="color: #008080008000;">javascript_semantics"1.0.4"</span><span style="color: #0000FF;">)</span> <span style="color: #000080;font-style:italic;">-- (mpfr_get_fixed() busted in 1.0.2|3)</span>
<span style="color: #7060A8;">requires</span><span style="color: #0000FF;">(</span><span style="color: #008000;">"1.0.0"</span><span style="color: #0000FF;">)</span> <span style="color: #000080;font-style:italic;">-- (mpfr_set_default_prec[ision] has been renamed)</span>
<span style="color: #008080;">include</span> <span style="color: #004080;">mpfr</span><span style="color: #0000FF;">.</span><span style="color: #000000;">e</span>
<span style="color: #7060A8;">mpfr_set_default_precision</span><span style="color: #0000FF;">(-</span><span style="color: #000000;">20</span><span style="color: #0000FF;">)</span> <span style="color: #000080;font-style:italic;">-- ensure accuracy to at least 20 d.p.</span>
Line 1,496 ⟶ 1,632:
<span style="color: #7060A8;">mpfr_mul</span><span style="color: #0000FF;">(</span><span style="color: #000000;">tax</span><span style="color: #0000FF;">,</span><span style="color: #000000;">total_price</span><span style="color: #0000FF;">,</span><span style="color: #000000;">tax</span><span style="color: #0000FF;">)</span>
<span style="color: #7060A8;">mpfr_add</span><span style="color: #0000FF;">(</span><span style="color: #000000;">total</span><span style="color: #0000FF;">,</span><span style="color: #000000;">total_price</span><span style="color: #0000FF;">,</span><span style="color: #000000;">tax</span><span style="color: #0000FF;">)</span>
<span style="color: #7060A8;">printf</span><span style="color: #0000FF;">(</span><span style="color: #000000;">1</span><span style="color: #0000FF;">,</span><span style="color: #008000;">"Total before tax:%21s26s\n"</span><span style="color: #0000FF;">,{</span><span style="color: #7060A8;">mpfr_get_fixed</span><span style="color: #0000FF;">(</span><span style="color: #000000;">total_price</span><span style="color: #0000FF;">,</span><span style="color: #000000;">2</span><span style="color: #0000FF;">,</span><span style="color: #000000;">comma_fill</span><span style="color: #0000FF;">:=</span><span style="color: #004600;">true</span><span style="color: #0000FF;">)})</span>
<span style="color: #7060A8;">printf</span><span style="color: #0000FF;">(</span><span style="color: #000000;">1</span><span style="color: #0000FF;">,</span><span style="color: #008000;">" Tax:%21s26s\n"</span><span style="color: #0000FF;">,{</span><span style="color: #7060A8;">mpfr_get_fixed</span><span style="color: #0000FF;">(</span><span style="color: #000000;">tax</span><span style="color: #0000FF;">,</span><span style="color: #000000;">2</span><span style="color: #0000FF;">,</span><span style="color: #000000;">comma_fill</span><span style="color: #0000FF;">:=</span><span style="color: #004600;">true</span><span style="color: #0000FF;">)})</span>
<span style="color: #7060A8;">printf</span><span style="color: #0000FF;">(</span><span style="color: #000000;">1</span><span style="color: #0000FF;">,</span><span style="color: #008000;">" Total:%21s26s\n"</span><span style="color: #0000FF;">,{</span><span style="color: #7060A8;">mpfr_get_fixed</span><span style="color: #0000FF;">(</span><span style="color: #000000;">total</span><span style="color: #0000FF;">,</span><span style="color: #000000;">2</span><span style="color: #0000FF;">,</span><span style="color: #000000;">comma_fill</span><span style="color: #0000FF;">:=</span><span style="color: #004600;">true</span><span style="color: #0000FF;">)})</span>
<!--</langsyntaxhighlight>-->
{{out}}
<pre>
Total before tax: 22,000,000,000,000,005.72
Total before tax: 22000000000000005.72
             Tax:  1,683,000,000,000,000.44
Tax: 1683000000000000.44
           Total: 23,683,000,000,000,006.16
Total: 23683000000000006.16
</pre>
=== 64 bit ===
As it happens, 64-bit Phix uses 80-bit floats for atoms, which actually have just enough accuracy for this task:
<!--<syntaxhighlight lang="phix">-->
<span style="color: #7060A8;">requires</span><span style="color: #0000FF;">(</span><span style="color: #000000;">64</span><span style="color: #0000FF;">)</span>
<span style="color: #004080;">atom</span> <span style="color: #000000;">total_price</span> <span style="color: #0000FF;">=</span> <span style="color: #000000;">4000000000000000</span><span style="color: #0000FF;">*</span><span style="color: #000000;">5.5</span><span style="color: #0000FF;">+</span><span style="color: #000000;">2.86</span><span style="color: #0000FF;">*</span><span style="color: #000000;">2</span><span style="color: #0000FF;">,</span>
<span style="color: #000000;">tax</span> <span style="color: #0000FF;">=</span> <span style="color: #000000;">total_price</span><span style="color: #0000FF;">*</span><span style="color: #000000;">0.0765</span><span style="color: #0000FF;">,</span>
<span style="color: #000000;">total</span> <span style="color: #0000FF;">=</span> <span style="color: #000000;">total_price</span><span style="color: #0000FF;">+</span><span style="color: #000000;">tax</span>
<span style="color: #7060A8;">printf</span><span style="color: #0000FF;">(</span><span style="color: #000000;">1</span><span style="color: #0000FF;">,</span><span style="color: #008000;">"Total before tax:%,26.2f\n"</span><span style="color: #0000FF;">,{</span><span style="color: #000000;">total_price</span><span style="color: #0000FF;">})</span>
<span style="color: #7060A8;">printf</span><span style="color: #0000FF;">(</span><span style="color: #000000;">1</span><span style="color: #0000FF;">,</span><span style="color: #008000;">" Tax:%,26.2f\n"</span><span style="color: #0000FF;">,{</span><span style="color: #000000;">tax</span><span style="color: #0000FF;">})</span>
<span style="color: #7060A8;">printf</span><span style="color: #0000FF;">(</span><span style="color: #000000;">1</span><span style="color: #0000FF;">,</span><span style="color: #008000;">" Total:%,26.2f\n"</span><span style="color: #0000FF;">,{</span><span style="color: #000000;">total</span><span style="color: #0000FF;">})</span>
<!--</syntaxhighlight>-->
with the same output, however (after deleting the first line) under 32-bit (and under p2js) they would incorrectly end in 4.00/0.25/4.00.
 
=={{header|PicoLisp}}==
<syntaxhighlight lang="text">(scl 2)
(let
(Before
Line 1,519 ⟶ 1,667:
(tab Fmt "Total before tax:" (format Before *Scl "." ","))
(tab Fmt "Tax:" (format Tax *Scl "." ","))
(tab Fmt "Total:" (format Total *Scl "." ",")) )</langsyntaxhighlight>
{{out}}
<pre>
Line 1,531 ⟶ 1,679:
(and some copying of names from the Raku example).
 
<langsyntaxhighlight lang="python">from decimal import Decimal as D
from collections import namedtuple
 
Line 1,556 ⟶ 1,704:
total = total_before_tax + tax
print(fmt % ('', '', '', '--------------------'))
print(fmt % ('', '', 'Total', total))</langsyntaxhighlight>
 
{{out}}
Line 1,567 ⟶ 1,715:
--------------------
Total 23683000000000006.16</pre>
 
=={{header|Quackery}}==
 
<syntaxhighlight lang="Quackery"> [ $ "bigrat.qky" loadfile ] now!
 
[ 100 * n->v ] is dollars ( n --> n/d )
 
[ n->v v+ ] is cents ( n/d n --> n/d )
 
[ rot n->v v* ] is cost ( n n/d --> n/d )
 
[ $->v drop v* 100 n->v v/ ] is tax ( n/d $ --> n/d )
 
[ 100 n->v v/
2 point$
$ " $" swap join
' [ 2 split nip ] ]do[
dup -3 peek
char . = if done
dup -2 peek
char . = iff
[ char 0 join ]
done
$ ".00" join ] is currency$ ( n/d --> $ )
 
[ currency$ echo$ ] is echocurrency ( n/d --> )
 
 
4000000000000000 5 dollars 50 cents cost
2 2 dollars 86 cents cost v+
 
say "Total price before tax: " 2dup echocurrency cr
2dup $ "7.65" tax
say "Tax: " 2dup echocurrency cr
v+
say "Total price with tax: " echocurrency cr
</syntaxhighlight>
 
{{out}}
 
<pre>Total price before tax: $22000000000000005.72
Tax: $1683000000000000.44
Total price with tax: $23683000000000006.16</pre>
 
=={{header|Racket}}==
Line 1,575 ⟶ 1,769:
The main problem is rounding correctly and this part is handled in cents-*, that implements a multiplication that rounds to the cents.
The rest of the program is only formatting.
<langsyntaxhighlight Racketlang="racket">#lang racket
(define (cents-* x y)
(/ (round (* 100 x y)) 100))
Line 1,619 ⟶ 1,813:
(for-each show-item all)
(newline)
(show-total all (/ #e7.65 100))</langsyntaxhighlight>
{{out}}
<pre>hamburger 4000000000000000 $5.50 -> $22000000000000000.00
Line 1,634 ⟶ 1,828:
(In order to achieve imprecision, you have to explicitly use scientific notation,
or use the <tt>Num</tt> type, or calculate a result that requires a denominator in excess of <tt>2 ** 64</tt>. (There's no limit on the numerator.))
<syntaxhighlight lang="raku" perl6line>my @check = q:to/END/.lines.map: { [.split(/\s+/)] };
Hamburger 5.50 4000000000000000
Milkshake 2.86 2
Line 1,661 ⟶ 1,855:
 
# make up for lack of a Rat fixed-point printf format
sub fix2($x) { ($x + 0.001).subst(/ <?after \.\d\d> .* $ /, '') }</langsyntaxhighlight>
{{out}}
<pre>Item Price Quantity Extension
Line 1,678 ⟶ 1,872:
Programming note: &nbsp; the tax rate can be expressed with or without a percent &nbsp; ('''%''')&nbsp; suffix.
===without commas===
<langsyntaxhighlight lang="rexx">/*REXX program shows a method of computing the total price and tax for purchased items.*/
numeric digits 200 /*support for gihugic numbers.*/
taxRate= 7.65 /*number is: nn or nn% */
Line 1,706 ⟶ 1,900:
exit /*stick a fork in it, we're all done. */
/*──────────────────────────────────────────────────────────────────────────────────────*/
show$: return right( '$'arg(1), 27) /*right─justify and format a number. */</langsyntaxhighlight>
{{out|output|text=&nbsp; (attempting to mimic a check-out register to some degree):}}
<pre>
Line 1,722 ⟶ 1,916:
 
===with commas===
<langsyntaxhighlight lang="rexx">/*REXX program shows a method of computing the total price and tax for purchased items.*/
numeric digits 200 /*support for gihugic numbers.*/
taxRate= 7.65 /*number is: nn or nn% */
Line 1,754 ⟶ 1,948:
do j=e to b by -3; _= insert(',', _, j); end /*j*/; return _
/*──────────────────────────────────────────────────────────────────────────────────────*/
show$: return right( commas( '$'arg(1) ), 27) /*right─justify and format a number. */</langsyntaxhighlight>
{{out|output|text=&nbsp; with commas in the larger numbers:}}
<pre>
Line 1,770 ⟶ 1,964:
 
=={{header|Ring}}==
<langsyntaxhighlight lang="ring">
# Project : Currency
 
Line 1,783 ⟶ 1,977:
see "tax thereon @ 7.65 : " + tax + nl
see "total price after tax : " + (price + tax) + nl
</syntaxhighlight>
</lang>
Output:
<pre>
Line 1,790 ⟶ 1,984:
total price after tax : 23683000006.16
</pre>
=={{header|RPL}}==
Need for big integers.
{{works with|RPL|HP-49C}}
« →STR
'''IF''' LASTARG 9 ≤ '''THEN''' "0" SWAP + '''END'''
1 OVER SIZE 2 - SUB
LASTARG NIP 1 + DUP 1 + SUB
"$" ROT SIZE LASTARG "0" IFTE +
"." + SWAP +
» '<span style="color:blue">→CURR</span>' STO
« 100 * R→I *
DUP <span style="color:blue">→CURR</span> CLLCD 1 DISP .5 WAIT
» '<span style="color:blue">→PRICE</span>' STO
« DUPDUP FLOOR - EVAL →NUM
0.5 ≥ SWAP CEIL LASTARG FLOOR IFTE
» '<span style="color:blue">→RND</span>' STO
« 100 * R→I
OVER <span style="color:blue">→CURR</span> "TPBT" →TAG
UNROT OVER * 100000 / <span style="color:blue">→RND</span> DUP <span style="color:blue">→CURR</span> "Tax" →TAG
UNROT + <span style="color:blue">→CURR</span> "TPWT" →TAG
» '<span style="color:blue">TAX→</span>' STO
 
4000000000000000 5.50 <span style="color:blue">→PRICE</span>
2 2.86 <span style="color:blue">→PRICE</span> +
7.65 <span style="color:blue">TAX→</span>
{{out}}
<pre>
3: TPBT:"$22000000000000005.72"
2: Tax:"$1683000000000000.44"
1: TPWT:"$23683000000000006.16"
</pre>
 
=={{header|Ruby}}==
<langsyntaxhighlight lang="ruby">require 'bigdecimal/util'
 
before_tax = 4000000000000000 * 5.50.to_d + 2 * 2.86.to_d
Line 1,800 ⟶ 2,029:
Tax: $#{tax.to_s('F')}
Total: $#{total.to_s('F')}"
</syntaxhighlight>
</lang>
{{out}}
<pre>Before tax: $22000000000000005.72
Line 1,809 ⟶ 2,038:
 
=={{header|Rust}}==
<langsyntaxhighlight lang="rust">extern crate num_bigint; // 0.3.0
extern crate num_rational; // 0.3.0
 
Line 1,860 ⟶ 2,089:
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let cents = (&self.amount * BigInt::from(100)).to_integer();
write!(f, "${}.{:0>2}", &cents / 100, &cents % 100)
}
}
Line 1,868 ⟶ 2,097:
fn new(num: f64) -> Self {
Self {
amount: BigRational::new(((num * 100.0).round() as i64).into(), 100.into())
}
}
Line 1,879 ⟶ 2,108:
}
}
}</langsyntaxhighlight>
{{out}}
<pre>
Line 1,890 ⟶ 2,119:
 
{{libheader|Scala}}Locale is manipulated to demonstrate the behavior with other currencies.
<langsyntaxhighlight lang="scala">import java.text.NumberFormat
import java.util.Locale
 
Line 1,919 ⟶ 2,148:
println(f"${" " * 16 + '\t' + " " * 16 + '\t' + f"${tax * 100}%5.2f%% tax" + '\t'}$taxation%,25.2f")
println(f"${" " * 16 + '\t' + " " * 16 + '\t' + "Amount due" + '\t'}${beforeTax + taxation}%,25.2f")
}</langsyntaxhighlight>
{{out}}
4000000000000000 Hamburger XL руб. 5,50 22 000 000 000 000 000,00
Line 1,931 ⟶ 2,160:
=={{header|Sidef}}==
{{trans|Raku}}
<langsyntaxhighlight lang="ruby">struct Item {
name, price, quant
}
Line 1,958 ⟶ 2,187:
 
var total = subtotal+tax
printf(fmt, '', '', 'Total ', total)</langsyntaxhighlight>
{{out}}
<pre>
Line 1,973 ⟶ 2,202:
Using ScaledDecimal numbers ('sX'-suffix).
{{works with|Smalltalk/X}}
<langsyntaxhighlight lang="smalltalk">check := #(
" amount name price "
(4000000000000000 'hamburger' 5.50s2 )
Line 2,007 ⟶ 2,236:
Transcript printf:fmt withAll:{'' . '' . 'Total' . (totalSum+totalTax)}.
 
Transcript cr; printCR:('Enjoy your Meal & Thank You for Dining at Milliways')</langsyntaxhighlight>
{{out}}
<pre>Item Price Qty Extension
Line 2,022 ⟶ 2,251:
=={{header|Swift}}==
 
<langsyntaxhighlight lang="swift">import Foundation
 
extension Decimal {
Line 2,040 ⟶ 2,269:
print("Price before tax: $\(totalBeforeTax)")
print("Total tax to be collected: $\(taxesToBeCollected)")
print("Total with taxes: $\(totalBeforeTax + taxesToBeCollected)")</langsyntaxhighlight>
 
{{out}}
Line 2,049 ⟶ 2,278:
 
=={{header|Tcl}}==
{{tcllib|math::decimal}}<langsyntaxhighlight lang="tcl">package require math::decimal
namespace import math::decimal::*
 
Line 2,062 ⟶ 2,291:
set total [+ $net $tax]
 
puts "net=[tostr $net], tax=[tostr $tax], total=[tostr $total]"</langsyntaxhighlight>
{{out}}
net=22000000000000005.72, tax=1683000000000000.44, total=23683000000000006.16
 
=={{header|Unicon}}==
Solution takes advantage of Unicon's FxPt class as well as Unicon's operator overloading extension.
<syntaxhighlight lang="unicon">import math
 
procedure main()
n_burgers := 4000000000000000
n_shakes := 2
 
price := FxPt(5.50) * n_burgers + FxPt(2.86) * n_shakes
tax := (price * FxPt(7.65/100)).round(2)
total := price + tax
 
write(left("Price", 10), "$", right(price.toString(),21))
write(left("Tax", 10), "$", right(tax.toString(),21))
write(left("Total", 10), "$", right(total.toString(),21))
end</syntaxhighlight>{{out}}
<pre>Price $ 22000000000000005.72
Tax $ 1683000000000000.44
Total $ 23683000000000006.16</pre>
 
=={{header|VBA}}==
Used in locality Euroland. Formatting as currency shows € in stead of $, and thousand separators are "." in stead of "," and the decimail 'point' is "," in stead of "." When run in the USA it will be with dollar sign and so on.
<langsyntaxhighlight lang="vb">Public Sub currency_task()
'4000000000000000 hamburgers at $5.50 each
Dim number_of_hamburgers As Variant
Line 2,093 ⟶ 2,342:
'the total with tax
Debug.Print "Total with tax "; Format(total_price_before_tax + tax, "Currency")
End Sub</langsyntaxhighlight>{{out}}
<pre>Total price before tax € 22.000.000.000.000.005,72
Tax € 1.683.000.000.000.000,44
Line 2,100 ⟶ 2,349:
=={{header|Wren}}==
{{libheader|Wren-big}}
<langsyntaxhighlight ecmascriptlang="wren">import "./big" for BigRat
 
var hamburgers = BigRat.new("4000000000000000")
Line 2,113 ⟶ 2,362:
System.print("Total price before tax : %((totalPreTax).toDecimal(2))")
System.print("Tax : %((totalTax).toDecimal(2))")
System.print("Total price after tax : %((totalAfterTax).toDecimal(2))")</langsyntaxhighlight>
 
{{out}}
Line 2,126 ⟶ 2,375:
So, just multiply bucks by 100 and be careful when doing tax calculations.
{{trans|Python}}
<langsyntaxhighlight lang="zkl">var priceList=Dictionary("hamburger",550, "milkshake",286);
var taxRate=765; // percent*M
const M=0d10_000;
Line 2,151 ⟶ 2,400:
fmt.fmt("","","","--------------------").println();
fmt.fmt("","","Total",toBucks(totalBeforeTax + tax)).println();
}</langsyntaxhighlight>
<langsyntaxhighlight lang="zkl">calcTab(T("milkshake",2),T("hamburger",4000000000000000));</langsyntaxhighlight>
{{out}}
<pre>
1,150

edits