Last active
September 24, 2015 21:12
-
-
Save P-Seebauer/7f4f644c61fe9875f5aa to your computer and use it in GitHub Desktop.
coin counter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| h=100 | |
| IO.puts(([200,h,50,20,10,5,2,1]|>Enum.reduce{h*elem(Float.parse(hd System.argv),0)|>trunc,[]},fn(i,{c,l})->{rem(c,i),List.duplicate(i<h&&"#{i}¢ "||"#{div(i,h)}€ ",div(c,i))++l}end)|>elem 1) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| h=100 | |
| main = do | |
| a <- getLine | |
| putStr$foldl1(\x y->x++' ':y)$snd$foldl(\(y,z)x->(y`mod`x,z++(replicate(y`div`x)$if x`mod`h==0then show(x`div`h)++"€"else(show x)++"¢")))(truncate(((read a)::Float)*100),[])[200,h,50,20,10,5,2,1] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| i=process.argv[2],r=[];for(c of [2,1,.5,.2,.1,.05,.02,.01])while(c>i){r.push(c>.5?c+'€':c*100+'¢');i-=c}console.log(r) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| for(r=[],b=[1,2,5,10,20,50,h=100,200],i=process.argv[2]*h;c=b.pop();)for(;c<i;i-=c)r.push(c<h?c+'¢':c/h+'€');console.log(r) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| my$x=prompt '';say gather for 2,1,.5,.2,.1,.05,.02,.01 {while $x>=$_ {take $_>.5??"$_€"!!"{$_*100}¢";$x-=$_}} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/swipl -q -s | |
| z(X,[A|R],S):-X>=A,z(X-A,[A|R],Y),S=[A|Y];z(X,R,S). | |
| z(X,[],[]):-0=:=X. | |
| y(X):-X>99->format('~I€ ',X/100);format('~I¢ ',X). | |
| x(X):-z(X*100,[200,100,50,20,10,5,2,1],Y),maplist(y,Y). | |
| :-write('enter number (finish with .)\n>'),read(X),x(X). |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Versions:
Elixir 1.0.5This is perl6 version 2015.05-139-g2281689 built on MoarVM version 2015.05-49-g07fbd62v3.3.1SWI-Prolog version 6.6.6 for amd64v0.12.4