vote up 4 vote down star
3

This question was posted by a C beginner and it was an exercise to calculate, given a dollar value input by the user, the minimum number of bills (or banknotes, depending on your locale) needed to reach that dollar value.

So, if the user entered 93, the output would be:

$20 bills = 4
$10 bills = 1
$5 bills = 0
$1 bills = 3

Finally succumbing to the phenomenon (it's a slow day here), I thought this would be ripe for a game of Code Golf.

For fairness, the input prompt needs to be (note the "_" at the end is a space):

Enter a dollar amount:_

I think I've covered all the bases: no identical question, community wiki. I won't be offended if it gets shut down though - of course, I'll never be able to complain about these types of questions again, for fear of being labelled a hypocrite :-)

Okay, let's see what you can come up with. Here's a sample run:

Enter a dollar amount: 127
$20 bills = 6
$10 bills = 0
$5 bills = 1
$1 bills = 2
flag
4  
So, no $2's then? – dmckee Sep 30 at 4:03
That was what the original question called for, so no $2. I haven't been to the US for about 20 years so I've forgotten the currency - over here in Oz, $1 and $2 are coins, $5 is the smallest note. – paxdiablo Sep 30 at 4:18
7  
Not really a fan of this code golf question, honestly. Doesn't feel golfy. – strager Sep 30 at 10:44
2  
Pax, If you want to write code-golf challenges, you have to design questions that could be solved in two or more ways: One way should easy and straight-forward, but long, and a 'hard' (thinking involved) but short. See the Morse code challenge for example - replace versus tree. See the comments on said challenge and see that there were people who "didn't get it" as well. – LiraNuna Sep 30 at 22:33
1  
Pax, you're always welcomed to answer my weekly code-golf :) – LiraNuna Oct 1 at 6:46
show 7 more comments

20 Answers

vote up 15 vote down check

Python, 83 chars

(or 84 depending on the line ending)

c=input("Enter a dollar amount: ")
for n in 20,10,5,1:print"$%d bills ="%n,c/n;c%=n

Joel's original attempt:

#!/usr/bin/python
c = int(input("Enter a dollar amount: "))
for n in [20,10,5,1]:
    print n,"bills =",c//n
    c = c % n
link|flag
Sorry for the edit... :) Nice job – Kalmi Sep 30 at 4:35
removed shebang line, which is unnecessary, and used mod-assignment operator (c%=n) – Triptych Sep 30 at 11:19
changed the print statement to use softspaces and I removed an unnecessary ";" from the end – Kalmi Sep 30 at 21:26
I think the square brackets can be removed, possibly saving a byte. Also, / is sufficient, because integer division is default in python 2.x. – recursive Sep 30 at 21:30
1  
And this is the new winner. – paxdiablo Oct 3 at 9:48
show 3 more comments
vote up 1 vote down

J

J has a built-in it calls "anti-base".

   0 2 2 5#:93
4 1 0 3
   0 2 2 5(#:,.~[:*/\.@}.[,1:)93
20 4
10 1
 5 0
 1 3

Unfortunately, the specified user interaction is impossible with only J built-ins.

link|flag
vote up 1 vote down

Pascal, 204 chars

My first attempt at a code golf so I thought I'd keep it old-school. Compiled with the Free Pascal Compiler.

program a;uses sysutils;var i,b,c:integer;begin write('Enter a dollar amount: ');read(i);for b:=20 downto 1 do if b in[20,10,5,1]then begin c:=round(int(i/b));writeln('$',b,' bills = ',c);i-=b*c;end;end.
link|flag
vote up 1 vote down

I'm a little late, but here is my first Golf attempt (was fun, even if the problem was simple). 152 characters using a C++ compiler, because that's all I have here. Maybe someone else can find a way to shorten this.

Formatted for readability, first line break is required, the others are optional:

#include <stdio.h>
int main()
{
    int a,b=1223296,d;

    for(printf("Enter a dollar amount: "), scanf("%d",&a); b>>=5; a%=d)
    	printf("$%i bills = %i\n", d=b&31, a/d);
}
link|flag
Is this supposed to be C or C++? C needs a return 0; at the end to be valid. – Chris Lutz Sep 30 at 21:18
I'm going to call it C++, because I'm not 100% sure if this is valid C code (disregarding the return 0 issue, as you mentioned). If someone could verify that it's valid C, I'll add the return 0 and say it's 161 characters. – Jon Seigel Oct 1 at 13:44
1  
code golf doesn't need to be valid. It just needs to produce the desired output. It can even terminate by crashing. – recursive Oct 1 at 22:13
Fair enough (new to the game). But if I call it C, it has to compile as C code, and I haven't checked that. – Jon Seigel Oct 2 at 12:43
vote up 1 vote down

GROOVY, 146 chars

println "Enter a dollar amount: "
l=System.in.newReader().readLine().toInteger()
[20,10,5,1].each{println "\$$it bills = ${(int)(l/it)}";l%=it;}

Not sure if there is any way to improve the readline part. It looks clumsy compared to other scripting languages. The (int) is unfortunately required because by default groovy deals with decimals not integers so we have to cast it down there.

link|flag
vote up 0 vote down

JAVA, 245 chars

class G{
  public static void main(String[] a) throws Exception{
    System.out.println("Enter a dollar amount: ");
    int l = new java.util.Scanner(System.in).nextInt();
    for (int i : new int[] {20,10,5,1}) {System.out.println("$"+i+" bills = "+l/i);l%=i;}
  }
}

245 chars are achieved by removing all unnecessary whitespace. As shown above it weighs 283 chars.

link|flag
vote up 4 vote down

WinXP COM File

160 bytes

Source:

GetInput:
  mov si,offset Prompt
  call OutputString
  xor cx,cx
  xor bp,bp
  xor dx,dx
  mov bx,10
  mov di,Denoms
GetInputLoop:  
  mov ah,1
  int 21h
  mov ah,ch
  xchg ax,bp
  cmp bp,bx
  je DoneInput
  sub bp,'0'
  cmp bp,bx
  jae DoneInput
  mul bx
  add bp,ax
  adc dx,cx
  jmp GetInputLoop
EndDigits:  
  popa
  mov ax,dx
  xor dx,dx
  inc di
  cmp [di],cl
  je GetInput
DoneInput:
  pusha
  mov al,[di]
  aam
  add ax,'00'
  xchg ah,al
  mov word ptr [si+3],ax
  call OutputString
  popa  
  mov bl,[di]
  div bx
  pusha
  push cx
CalcDigitLoop:
  xor dx,dx
  mov bl,10
  div bx
  add dl,'0'
  push dx
  or ax,ax
  jnz CalcDigitLoop
PrintDigitLoop:
  pop dx
  or dx,dx
  jz EndDigits
  mov ah,2
  int 21h
  jmp PrintDigitLoop
OutputStringLoop:  
  mov ah,2
  mov dl,al
  int 21h
OutputString:
  lodsb
  or al,al
  jnz OutputStringLoop
  ret  
Prompt:
  db 10,13,'Enter a dollar amount: ',0
Output:
  db 10,13,'$   bills = ',0
Denoms:
  db 20,10,5,1,0

Skizz

link|flag
vote up 1 vote down

JavaScript, 135

JSBin Working Example

n=prompt('Enter a dollar amount: ');
s=[20,10,5,1];
for(i in s)
    b=s[i],
    document.write(b+' dollar bills = ' + Math.floor(n/b) + '<br/>'),
    n%=b;

Minified:

n=prompt('Enter a dollar amount: ');s=[20,10,5,1];for(i in s)b=s[i],document.write(b+' dollar bills = '+Math.floor(n/b)+'<br/>'),n%=b;

I can get it down to 129 characters if I cheat and remove semicolons, replace <br/> with \n, and leave an open <pre> at the end of the document:

n=prompt('Enter a dollar amount: ')s=[20,10,5,1]for(i in s)b=s[i],document.write(b+' dollar bills = '+Math.floor(n/b)+'\n'),n%=b
link|flag
vote up 1 vote down

C, 173

#include <stdio.h>
int n=20,c;int main(){
return (n-20||(printf("Enter a dollar amount: "),
scanf("%d",&c))),n?printf("$%d bills = %d\n",n,c/n),
c=c%n,(n/=2)-2||--n,main():0;}

All the linebreaks except the one after #include are removable. It's not the shortest solution, though it does make use of some less used features of C.


With some illegal hacks (C89 permits implicit int, C99 doesn't; C99 permits lack of return from main, C89 doesn't; neither permits omitting prototype of variadic printf) this still manages to compile and run in most compilers.

n=20,c;main(){n-20||(printf("Enter a dollar amount: "),scanf("%d",&c));
n?printf("$%d bills = %d\n",n,c/n),c=c%n,(n/=2)-2||--n,main():0;}

Only 136 characters (newlines removed)!

link|flag
1  
"(n/=2)-2||--n" : what a torturous, short-circuity, way to skip 2 :-) – paxdiablo Sep 30 at 8:14
It's an interesting method, but it actually loses when I try to put it in my solution. Interesting that it appears to be shorter here. – Chris Lutz Sep 30 at 17:29
vote up 4 vote down

Ruby, 87

p"Enter a dollar amount: "
n=gets.to_i;[20,10,5,1].map{|b|p"$#{b} bills = #{n/b}";n%=b}
link|flag
When I run this at the onlinje Ruby tester (there's no way in Hades I'm going to put a language like that on my hard disk :-) ), I get quotes around the strings and an extra line "[13,3,3,0]". Was that expected? – paxdiablo Sep 30 at 6:51
Granted the extra line may be a return value of sorts, since it's the modulo for each denomination. – paxdiablo Sep 30 at 6:54
@Pax: that's the string representation of the mapped array, which is the last statement evaluated. It's output because you're using an interactive shell which just evaluates and outputs any value you throw at it. If you ran this as a standalone program the extra line would not be output. – JRL Sep 30 at 11:01
Right, irb is partly a debugger. If run normally as ruby cgbn.rb it will DTRT. It's true that .map actually builds a new array; it was 1 byte shorter than [].each. :-) – DigitalRoss Sep 30 at 15:09
vote up 1 vote down

Ruby, 97

$><<'Enter a dollar amount: '
n=gets.to_i
[20,10,5,1].map{|i|$><<"$%d bills = %d\n"%[i,n/i]
n%=i}


Would someone please do one of these for language-agnostic-but-not-perl? :-) :-)

link|flag
That looks like Ruby to me, but might not look like Ruby to everyone. Please include the language and the character count when posting code golf answers. – Chris Lutz Sep 30 at 5:32
Hey, we Perlers need something to do. Everyone else here just disses our language. – Chris Lutz Sep 30 at 5:48
1  
You mean something to do when we're not busy keeping the world running, right? – hobbs Sep 30 at 19:57
vote up 3 vote down

C#, 214

When formatted for Golf, the following C# is 214 characters in length:

using C = System.Console;
using System.Linq;
class P {
    static void Main() {
        C.Write("Enter a dollar amount: ");
        new[] { 20, 10, 5, 1 }.Aggregate(
            int.Parse(C.ReadLine()),
            (a, v) => { 
                C.Write("${0} bills = {1}\n", v, a / v);
                return a % v; 
            }
        );
    }
}

Thanks Andrew Shepherd!

link|flag
Why do you have the var l line? Why not just: "new List<int>{20, 10, 5, 1}.Aggregate(Int32.Parse....)? – Andrew Shepherd Sep 30 at 5:33
@Andrew Shepherd: Good. Thanks. – Jason Sep 30 at 5:36
2  
OK, now take out "using System.Collections.Generic" and replace "new List<int>" with "new int[]" – Andrew Shepherd Sep 30 at 5:41
@Andrew Shepherd: You are on the ball today good sir. Thank you. – Jason Sep 30 at 5:43
vote up 1 vote down

Lua

128 chars

Shown as two lines (broken at a space) to fit on the screen.

p=print p"Enter a dollar amount: "m=io.read()for _,i in pairs{20,10,5,1}do
x=math.modf(m/i)p("$"..i.." bills = "..x)m=m-x*i end
link|flag
vote up 0 vote down

c++ implementation, 193 not including space. might wanna add system("PAUSE") at the end of main to see output.

#include <iostream>
using namespace std;
void o(int a,int d)
{
    if(d!=2)
    	if(a && d)
    		cout << "$" << d << " bills = " << a/d << endl;
    	else
    		return;
    o(d!=2?a%d:a,d/2);
}
void main(){
    int n;
    cout << "Enter a dollar amount: ";
    cin >> n;
    o(n,20);
}
link|flag
Actually, looking at this, it would have been much easier if $2 was allowed. Then it would have been a simple int divide by two until zero. – paxdiablo Sep 30 at 4:58
A few pointers to make it shorter: 1) Drop all those unnecessary spaces. 2) Using a function makes code more readable. This is code golf. Everything goes in main() unless it absolutely has to be recursive - and in this situation, iterative will always win. 4) Don't try to use fancy math tricks to generate the bill values. It's probably easier to just store it in a list and iterate over the list. 5) d-2 is shorter than d!=2 and returns the same truth values. a&&b might be shortenable too, but I can't see it right now. – Chris Lutz Sep 30 at 5:03
Actually, disregard point 4. My entry shrunk massively with that. – Chris Lutz Sep 30 at 5:08
i thought either this or copy from everyone else, but i see your points. – Funky Dude Sep 30 at 13:42
vote up 2 vote down

Well, I'll toss in a shorter C answer based on Pax's and call it a night, and let the golf gurus try to shorten it. 157 characters (note the very important space):

#include <stdio.h>
int main(){int n=40,c;printf("Enter a dollar amount: ");scanf("%d",&c);while(n/=2)if(n-2)printf("$%d bills = %d\n",n,c/n),c%=n;return 0;}

Formatted:

#include <stdio.h>
int main()
{
    int n = 40, c;
    printf("Enter a dollar amount: ");
    scanf("%d", &c);
    while(n /= 2)
        if(n - 2)
            printf("$%d bills = %d\n", n, c / n), c %= n;
    return 0;
}
link|flag
1  
Oooh, gotta love that comma operator. – paxdiablo Sep 30 at 4:55
Yep, the comma operator is your friend. I just wish I could do more with it. Or with anything, for that matter. – Chris Lutz Sep 30 at 4:56
You can drop the 5 from the declaration of p, or at least gcc with -ansi -pedantic seems to think so. – Novelocrat Sep 30 at 5:08
1  
@Novelocrat - I'm not sure about that. That declares p with length 4 because int arrays (or generally speaking, { x } declared arrays) aren't nul-terminated. So the resulting code might work, but invokes undefined behavior. But it's all moot now. – Chris Lutz Sep 30 at 5:13
"But it's all moot now" - dang. I just spent far too much time working out how to save a character by declaring n like so: char* n="\24\n\5\1";. Then you have to go and get rid of the array altogether... – Michael Burr Sep 30 at 5:40
show 3 more comments
vote up 9 vote down

Perl, 91 chars

linebreak is optional.

print"Enter a dollar amount: ";$d=<>;for(20,10,5,1){
printf"\$$_ bills = %d\n",$d/$_;$d%=$_}

Perl 5.10, 87 chars

print"Enter a dollar amount: ";$d=<>;for(20,10,5,1){
say"\$$_ bills = ",int$d/$_;$d%=$_}

This might be non-qualifying since it will only run under perl -E or perl -M5.010 or with use 5.010; prepended, and if you count any of those it's longer than the other. :)

link|flag
1  
+1 though I bet you can shorten that with postfix notation. Also, consider Perl 5.10's say() function. – Chris Lutz Sep 30 at 4:54
Almost identical to the one I was writing. Use printf...%d, lose the int and save 2 more chars. – mobrule Sep 30 at 5:05
Don't know if it will apply as well here, but I discovered you could shave a few characters by changing the list of values to a single value starting at 20 (or 40), dividing by 2, rounding, and checking if the result isn't 2. That made my loop significantly smaller in C, and it might make the code a little shorter here too. – Chris Lutz Sep 30 at 5:41
Postfix notation doesn't help because the savings from the parens are offset by the fact that assignment operators aren't the easiest thing to work into an expression. And say is only a tiny gain :) Likewise, @Chris Lutz, the thought is appreciated but I'm pretty sure the loop control would outweigh the literal list in any case. :) – hobbs Sep 30 at 10:55
vote up 3 vote down

Now down to 121 characters in MATLAB:

>> p=@num2str;x=input('Enter a dollar amount: ');for c=[20 10 5 1],disp(['$' p(c) ' bills: ' p(floor(x/c))]);x=mod(x,c);end

----Prior Version----

134 characters (not counting the >> prompt) in Matlab:

>> p=@num2str;x=input('Enter a dollar amount: ');b=[20 10 5 1];for c=1:4,d=b(c);disp(['$' p(d) ' bills: ' p(floor(x/d))]);x=mod(x,d);end

Or, with four more characters, ...b=[100 20 10 5 1];for c=1:5... would be all about the Benjamins.

link|flag
For those unfamiliar with US currency, I'm assuming the $100 note has Ben Franklin on it, yes? – paxdiablo Sep 30 at 4:50
@Pax - yes. urbandictionary.com/define.php?term=benjamins/… – mtrw Sep 30 at 4:54
+1 matlab in golf bag – mobrule Sep 30 at 6:35
@mobrule - thanks! – mtrw Sep 30 at 6:54
vote up 0 vote down

Perl 99 char

perl -MYAML -E'$d=<>;for(qw[100 50 20 10 5 1]){while(($t=$d-$_),$t>=0){$d=$t;$_{$_}++}}say Dump\%_'

Here is the code before I minimized it.

#! /opt/perl/bin/perl
use strict;
use warnings;
use 5.10.1;
use YAML;

my $dollar = <>;
my @bills = qw'100 50 20 10 5 1';

for( @bills ){
  my $t;
  while( ($t = $dollar - $_), $t >= 0 ){
    $dollar -= $_;
    $_{$_}++
  }
}

say Dump \%_;

If you insist on it printing a prompt, it goes up to 127

perl -MYAML -E'say"Enter a dollar amount:";$d=<>;for(qw[100 50 20 10 5 1]){while(($t=$d-$_),$t>=0){$d=$t;$_{$_}++}}say Dump\%_'

If you want to output the value as "$10 bills = 3", it goes up to 134

perl -E'say"Enter a dollar amount:";$d=<>;for(qw[100 50 20 10 5 1]){my$i;while(($t=$d-$_),$t>=0){$d=$t;$i++}say"\$$_ bills = $i"if$i}'
link|flag
I think it's generally considered cheating to use external modules. And I think doing it without YAML.pm wouldn't make it that much larger. – Chris Lutz Sep 30 at 4:31
Can't comment on external modules (although if they're allowed, the C code could be much smaller) but you must have the prompt as specified. – paxdiablo Sep 30 at 4:52
vote up 3 vote down

F#, 136 chars

Code-golf:

printf"Enter a dollar amount: ";Seq.fold(fun r b->printfn"$%d bills = %d"b (int(r/b));r%b)(System.Console.ReadLine()|>int)[20;10;5;1]

with whitespace added for readability:

printf "Enter a dollar amount: "
Seq.fold (fun r b->
            printfn "$%d bills = %d" b (int(r/b))
            r%b)
         (System.Console.ReadLine()|>int)
         [20;10;5;1]
link|flag
vote up 7 vote down

194 characters (with two lines, the #include and the rest combined on one line with leading spaces removed - formatted here for readability, though that's a relative term):

#include <stdio.h>
int main(void){
    int c,n;
    printf("Enter a dollar amount: ");scanf("%d",&c);
    for(n=20;n;n=(4600-6740*n+2213*n*n-73*n*n*n)/17100)
        {printf("$%d bills = %d\n",n,c/n);c=c%n;}
    return 0;
}
link|flag
Alright, I'm curious now. What's with the... ok, I'm gonna label it quadratic, even though I'm pretty sure that's wrong. What's with the quadratic in the 'increment' part of the loop? – Matthew Scharley Sep 30 at 4:05
1  
It's cubic, and my bet is it's purpose is to traverse the list 20, 10, 5, 1, 0 – Chris Lutz Sep 30 at 4:07
2  
And while we're at it, I shortened this by 13 characters by replacing your function with a list of the proper numbers. But that cryptic function is still golf-worthy. – Chris Lutz Sep 30 at 4:17
1  
So the obfuscated longer answer gets more votes than the clearer C answer that is actually shorter? What does that say about us? – Andrew Shepherd Sep 30 at 6:48
1  
@andrew - this longer C version was a first cut and got some early votes. Also, I think some of the votes were actually because of the clever (if non-obvious) way to generate the {20, 10, 5, 1, 0} list. – Michael Burr Sep 30 at 7:04
show 12 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.