Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
19
Task/Currency/Maple/currency.maple
Normal file
19
Task/Currency/Maple/currency.maple
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
Digits := 50;
|
||||
tax := .0765;
|
||||
|
||||
burgersquantity := 4000000000000000;
|
||||
burgersprice := 5.50;
|
||||
burgerscost := burgersquantity * burgersprice;
|
||||
|
||||
milkshakesquantity := 2;
|
||||
milkshakesprice := 2.86;
|
||||
milkshakescost := milkshakesquantity * milkshakesprice;
|
||||
|
||||
total := burgerscost + milkshakescost;
|
||||
printf("%.2f\n",total);
|
||||
|
||||
totaltax := total * tax;
|
||||
printf("%.2f\n",totaltax);
|
||||
|
||||
totalprice := totaltax + total;
|
||||
printf("%.2f\n",totalprice);
|
||||
Loading…
Add table
Add a link
Reference in a new issue