Well, here's another installment of our weekly code-bowling game. As a refresher:

Code-Bowling is a challenge for writing the most obscure, unoptimized, horrific and bastardized code possible. Basically, the exact opposite of Code-Golf.

The Challenge:

Create a program using the langauge of your choice that accepts as input 2 numbers and returns the sum of the numbers.

Example:

$myprogram 1 2
3

Rules:

There really are none. It can be a console application, it can be a webpage, it can be whatever. It just needs to be a stand-alone program that accepts numbers and returns numbers. The format and methods are 100% up to you.

So have fun, and let's see the bastardized solutions you can come up with!

link|improve this question
2  
Should be community wiki. – Thomas Jan 21 '11 at 16:56
1  
@Thomas: no argument from me, just we no longer have that option... – ircmaxell Jan 21 '11 at 17:04
Heh :) I've been inactive for a while. Will go look this up on meta. Sorry! – Thomas Jan 21 '11 at 17:04
It's community wiki now. – Nyuszika7H Jan 21 '11 at 17:46
feedback

17 Answers

up vote 19 down vote accepted

Here's a short and elegant shell solution:

#!/bin/sh
{ seq 1 "$1"; seq 1 "$2"; } | wc -l

It's great for when you want to add a couple natural numbers that aren't too big.

Here is a generalized version that sums all the arguments:

#!/bin/sh
for i in "$@" ; do
    seq 1 "$i"
done | wc -l
link|improve this answer
1  
+1! I was about to say that I think you missed the point. But wow. That's deceptively evil... Excellent! – ircmaxell Jan 21 '11 at 23:54
+1 ! Nice one ! – peoro Jan 23 '11 at 11:53
Took me a while to realize what's going on, this is amazing – Razor Storm Feb 7 '11 at 9:13
3  
Heh, you just made my computer count on it's fingers. – Gerry Aug 17 '11 at 20:10
feedback

MIXAL

* I DEDICATE ALL THIS CODE TO MY GIRLFRIEND, MINJI, WHO HAS TO SUPPORT ME
* BUT IS STILL SLEEPING ON MY BED.
* I RENTED A LUXURY STUDIO($405 PER WEEK), WHICH SHE LOVES, FOR HER,
* WHO WEIGHTS ABOUT 80 KG AND IS ALWAY IRRITABLE AND MAKES ME CRAZY.
* I AM WORKING FOR THE RENT FEE 14 HOURS PER DAY,
* INCLUDING SATURDAY, SUNDAY, AND PUBLIC HOLIDAY.
* AND TODAY I WORKED FOR 16.5 HOURS AND CAME HOME.
* SHE IS SLEEPING AND THE REFRIGERATOR IS EMPTY.
* BECAUSE SHE DIDN'T GO TO A STORE FOR FOOD.
* BUT SHE BOUGHT A GUCCI BAG THE DAY BEFORE YESTERDAY.
* I HAVE TO GO TO A STORE IN ORDER TO BUY BREAD.
* I HAVE NO MONEY TO BUY PORK BECAUSE OF THE F*CKING LUXURY STUDIO.
* I AM STARVING.
* I DECIDED TO BREAK UP WITH HER FEW HOURS AGO.
* AND YOU GAVE ME A VERY GOOD QUESTION.
* ANYWAY, I DEDICATE ALL THIS CODE TO MY GIRLFRIEND, WHO ARE NOT
* COOKING FOR ME.

* LINE PRINTER
LP  EQU 18
* TYPEWRITER
TW  EQU 19

* LINE PRINTER BLOCK SIZE
LPSZ    EQU 24
TWSZ    EQU 14

* ADDRESS 0 IS A BUFFER.
    ORIG    3000
START   IN  0(TW)
    JBUS    *(TW)

* THE RANGE OF NUMBER IS -2^30 ~ +2^30.
* BUT WHO CARES?
* ANYWAY, I AM STARVING.

    ENTA    0
    LDX 0
    NUM
    STA 0

    ENTA    0
    LDX 1
    NUM
    ADD 0

    CHAR
    STA 0
    STX 1

    OUT 0(LP)
    JBUS    *(LP)
    HLT

    END START

* LIVING WITH MY GIRLFRIEND IS THE HELL.
link|improve this answer
2  
This is the most poetic answer I have come across in a long time ... maybe ever. – Evgeny Feb 10 '11 at 3:53
feedback

I whipped up another solution. It does addition O(n^2) through hetrodyning and a Discrete Fourier Transform. Only works with positive integers. Oh, and it's C99 code.

#include <stdlib.h>
#include <stdio.h>
#include <math.h>

int main(int argc, char* argv[]) {
#ifndef M_PI
    const double M_PI = acos(-1); // No longer defined in C99, but lingers in some implementations.
#endif

    if(argc < 3) {
        printf("Does not compute\n");
        return EXIT_FAILURE;
    }
    int a = atoi(argv[1]);
    int b = atoi(argv[2]);
    if(a < 0) a = -a;
    if(b < 0) b = -b;
    if(b < a) { b ^= a; a ^= b; b ^= a; }
    for(int i=b;;i++) {
        double Xi = 0, Xr = 0;
        double N = 4*i;
        for(int j = 0; j < N; j++) {
            Xr += 2*sin(2*M_PI*a*j/N)*cos(2*M_PI*b*j/N)*cos(2*M_PI*i*j/N) / N;
            Xi += 2*sin(2*M_PI*a*j/N)*cos(2*M_PI*b*j/N)*sin(2*M_PI*i*j/N) / N;
        }
        if(Xr > 0.1 || Xi > 0.1) {
            printf("%d\n",i);
            break;
        }
    }

    return EXIT_SUCCESS;
}
link|improve this answer
What the hell. This is sick enough for a +1. – TheBlastOne Dec 23 '11 at 18:18
feedback

In C#. This one wires up various logic gates into 32 x 1 bit full adders and then wires up their carry terminals to each other to create a 32 bit full adder.

class Program
{
    static void Main(string[] args)
    {
        FullAdder[] adders = new FullAdder[32];
        Buffer[] buffers = new Buffer[32];

        for (int i = 0; i < 32; i++)
        {
            adders[i] = new FullAdder();
            buffers[i] = new Buffer();

            adders[i].S = new OutputTerminal(buffers[i]);

            if (i > 0)
                adders[i - 1].Cout = new OutputTerminal(adders[i].Cin);
        }

        // Overflow
        adders[31].Cout = new OutputTerminal(new Buffer());

        int i1 = int.Parse(args[0]);
        int i2 = int.Parse(args[1]);

        for (int i = 0; i < 32; i++)
        {
            adders[i].A.Set((i1 % 2) == 1);
            adders[i].B.Set((i2 % 2) == 1);

            i1 = i1 >> 1;
            i2 = i2 >> 1;
        }

        int result = 0;
        for (int i = 31; i >= 0; i--)
        {
            result |= (buffers[i].Value ? 1 : 0);

            if (i != 0)
                result <<= 1;
        }

        Console.WriteLine(result);
    }
}

class FullAdder
{
    public InputTerminal A { get; private set; }
    public InputTerminal B { get; private set; }
    public InputTerminal Cin { get; private set; }

    public OutputTerminal S
    {
        get { return _xor2.Output; }
        set { _xor2.Output = value; }
    }

    public OutputTerminal Cout
    {
        get { return _or.Output; }
        set { _or.Output = value; }
    }

    private XORGate _xor1, _xor2;
    private ANDGate _and1, _and2;
    private ORGate _or;

    public FullAdder()
    {
        _xor1 = new XORGate();
        _xor2 = new XORGate();
        _and1 = new ANDGate();
        _and2 = new ANDGate();
        _or = new ORGate();

        A = new InputTerminal(b => { _xor1.Input1.Set(b); _and2.Input1.Set(b); });
        B = new InputTerminal(b => { _xor1.Input2.Set(b); _and2.Input2.Set(b); });
        Cin = new InputTerminal(b => { _xor2.Input2.Set(b); _and1.Input2.Set(b); });

        _xor1.Output = new OutputTerminal(new InputTerminal(b => { _xor2.Input1.Set(b); _and1.Input1.Set(b); }));

        _and1.Output = new OutputTerminal(_or.Input1);
        _and2.Output = new OutputTerminal(_or.Input2);
    }
}

class InputTerminal
{
    Action<bool> _reader;

    public InputTerminal(Action<bool> reader)
    {
        _reader = reader;
    }

    public virtual void Set(bool value)
    {
        _reader(value);
    }
}

class OutputTerminal
{
    InputTerminal _destination;

    public OutputTerminal(InputTerminal destination)
    {
        _destination = destination;
    }

    public void Set(bool value)
    {
        _destination.Set(value);
    }
}

class Buffer : InputTerminal
{
    public bool Value { get; private set; }

    public Buffer()
        : base(null)
    {
    }

    public override void Set(bool value)
    {
        Value = value;
    }
}

abstract class Gate
{
    public InputTerminal Input1 { get; private set; }
    public InputTerminal Input2 { get; private set; }
    public OutputTerminal Output { get; set; }

    bool _val1, _val2;

    public Gate()
    {
        Input1 = new InputTerminal(b => { _val1 = b; OnChange(); });
        Input2 = new InputTerminal(b => { _val2 = b; OnChange(); });
    }

    private void OnChange()
    {
        Output.Set(Calculate(_val1, _val2));
    }

    protected abstract bool Calculate(bool first, bool second);
}

class XORGate : Gate
{
    protected override bool Calculate(bool first, bool second)
    {
        return first ^ second;
    }
}

class ANDGate : Gate
{
    protected override bool Calculate(bool first, bool second)
    {
        return first & second;
    }
}

class ORGate : Gate
{
    protected override bool Calculate(bool first, bool second)
    {
        return first | second;
    }
}
link|improve this answer
feedback

This one uses the power of the cloud!

#!/usr/bin/python

from urllib2 import urlopen
from sys import argv
import re

nums = argv[1:]

cloud = urlopen('http://www.bing.com/search?q=%s' % '+%2B'.join(nums))

result = ' '.join(cloud.readlines())

search = '+'.join(nums) + ' = '

searchpos = result.index(search)

startresultpos = searchpos + len(search) 
endresultpos = result.index('<',startresult
print result[startresultpos : endresultpos]
# I couldn't get regexes to work in 20 seconds, so I figured a couple searches 
# through the string would be the next best thing.
link|improve this answer
feedback
/***************************************************************************
***DISCLAIMER***************************************************************
****************************************************************************
THIS SOFTWARE IS PROVIDED “AS IS” AND ANY EXPRESSED OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
OR BUSINESS INTERRUPTION)
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
DAMAGE.
***************************************************************************/

// Create the Math object in jQuery's namespace in the case it doesn't exists
if (typeof jQuery.Math === "undefined") {
    jQuery.Math = new Object();
}

// Extend the Math object in jQuery's namespace with SUM.
jQuery.extend(jQuery.Math, {
    SUM: function(theFirstNumber, theSecondNumber) {
        // Make sure the arguments are numbers
        if (isNaN(Number(theFirstNumber)) === false) {
            theFirstNumber = Number(theFirstNumber);
        } else {
            // If it isn't a number, throw a TypeError.
            throw new TypeError("jQuery.Math.SUM: first number is not a number");
        }
        if (isNaN(Number(theSecondNumber)) === false) {
            theSecondNumber = Number(theSecondNumber);
        } else {
            // If it isn't a number, throw a TypeError.
            throw new TypeError("jQuery.Math.SUM: second number is not a number");
        }
        return theFirstNumber + theSecondNumber;
    }
});

Usage:

document.write(jQuery.Math.SUM(1, 2));

http://jsfiddle.net/KGwTR/1/embedded/js%2Cresult/

link|improve this answer
5  
+1 just for the boilerplate at the top!!!! – Nathan Jan 21 '11 at 18:27
I spotted a bug: isNaN(Number(theFirstNumber)) === false is repeated twice. Then again, this type of bug is fairly typical, so maybe you meant to do that :-) – Joey Adams Jan 22 '11 at 7:05
Nope, I didn't meant to do that. Actually, I had to rewrite that part completely because it keeped reporting jQuery.Math.SUM: first number is not a number. Fixed. – Nyuszika7H Jan 22 '11 at 9:46
3  
This shit does nothing except for the real "big deal" job of adding using the + operator, and lots of plausibility checks. Or am I missing the point? – TheBlastOne Dec 23 '11 at 18:21
feedback

This solution is fast because it uses C:

#!/usr/bin/perl
use strict;
use warnings;

open(FILE, '> /tmp/add.c');

print FILE <<END;
#include <stdio.h>

int main(void)
{
    printf("%d\\n", $ARGV[0] + $ARGV[1]);
    return 0;
}
END

close(FILE);

print qx {gcc /tmp/add.c -o /tmp/add && /tmp/add};
link|improve this answer
Not bad man, not bad. But isn´t that a very generic way of "solving" all similar challenges? – TheBlastOne Dec 23 '11 at 18:24
feedback
#!/bin/bash

a=$1
b=$2

echo -n > /tmp/sum
while (( $a > 0 )) ; do
    echo -n 'a' >> /tmp/sum
    (( --a ))
done
while (( $b > 0 )) ; do
    echo -n 'b' >> /tmp/sum
    (( --b ))
done
du -b sum | cut -f1

Usage:

$ ./add.sh 1 2
3

It needs a large hard drive and does not work correctly with negative numbers.

link|improve this answer
I thought my solution was evil for merely taking 𝑂(n₁+n₂) time. +1 – Joey Adams Jan 22 '11 at 0:02
feedback
struct nada{};

template<int n,int m>struct flip {
    enum{r=flip<n/2,m-1>::r+(n&1)<<m};
};

template<int n>struct flip<n,0> { enum{r=n&1}; };

template<int m,int n,class F>nada do(int i) {
    return (i&1)?do<m-1,2n+1,F>(i/2):do<m-1,2n,F>(i/2);
}
template<int n,class F>nada do<0,n,F>(int i) {
    return (i&1)?F::T<flip<2n+1>::r>():F::T<flip<2n>::r>();
}

template<typename v, int n> struct i{
    static v V(){ static v x;static bool r=(cin>>x);return x; }
};
struct I1:i<int,1> {};
struct I2:i<int,2> {};

template<int n> struct A2 {
    template<int q>struct T:nada{
        T(){cout<<q+n<<"\n";}
    };
};
template<int m> struct A1 {
    template<int n>struct T:nada{
        T(){do<m,0,A2<n> >(I2::V())}
    };
};

enum {precision=15};
int main()
{
    do<precision,0,A1<precision> >(I1::V());
    return 0;
}

If you can compile it, this creates 30 depth binary tree of if statements that terminate in constant print to standard output statements. That is 2^30 if statements. It adds integers mod 32768.

Increased or decreased precision can be generated by simply changing the precision enum value.

Note that the code has at least a O(2^n) compilation time. Execution time is O(lg(n)).

Anyone have an overkill C++ compiler?

link|improve this answer
feedback

Here's one from me.

Usage:

$php add.php ssssssssss0 0x41 0x1a
2n

It accepts and auto-detects base 0, 1, 8, 10 and 16. (Base 0 is successor syntax, 1 == S0, 2 == SS0, etc).

  • Base 0 has a leading s character
  • Base 1 has a leading u character (unary)
  • Base 8 has a leading 0 character
  • Base 16 has a leading x or 0x character
  • Base 10 is the default

You can see the rest...

Code:

<?php
if ($argc != 3 && $argc != 4) {
    die("Invalid Number Of Arguments:\n\n Usage: numbers.php a b base\n");
}

$a = $argv[1];
$b = $argv[2];
$base = isset($argv[3]) ? convertBase($argv[3]) : 10;

$a = convertBase($a);
$b = convertBase($b);
$a = convertToBase($a, 1);
$b = convertToBase($b, 1);

$result = $a . substr($b, 1);
$result = convertBase($result);

echo convertToBase($result, $base) . "\n";

function convertBase($number) {
    if (empty($number)) return 0;
    if ($number[0] == '0') {
        $len = strlen($number);
        if ($len > 1) {
            if ($number[1] == 'x' || $number[1] == 'X') {
                $number = substr($number, 2);
                $len -= 2;
                $result = 0;
                for ($i = 0; $i < $len; $i++) {
                    $stub = strtolower($number[$len - $i - 1]);
                    $stub = array_search($stub, array('0','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f'), true);
                    $result += pow(16, $i) * $stub;
                }
                return $result;
            } else {
                $number = ltrim($number, '0');
                $len = strlen($number);
                $result = 0;
                for ($i = 0; $i < $len; $i++) {
                    $stub = $number[$len - $i - 1];
                    $result += pow(8, $i) * $stub;
                }
                return $result;
            }
        }
        return 0;
    } elseif ($number[0] == 'x') {
        return convertBase('0' . $number);
    } elseif (strtolower($number[0]) == 's') {
        $counter = 0;
        $number = strtolower($number);
        while (isset($number[0]) && $number[0] == 's') {
            $counter++;
            $number = substr($number, 1);
        }
        return $counter + convertBase($number);
    } elseif (strtolower($number[0]) == 'u') {
        $number = substr($number, 1);
        $len = strlen($number);
        $count = 0;
        for ($i = 0; $i < $len; $i++) {
            if ($number[$i] == 1) $count++;
        }
        return $count;
    }
    return (int) $number;
}

function convertToBase($number, $base) {
    switch ($base) {
        case 0:
            $out = '';
            for ($i = 0; $i < $number; $i++) {
                $out .= 's';
            }
            $out .= '0';
            return $out;
        case 1:
            $out = 'u';
            for ($i = 0; $i < $number; $i++) {
                $out .= '1';
            }
            return $out;
        case 2:
        case 3:
        case 4:
        case 5:
        case 7:
        case 8:
        case 9:
        case 10:
            $out = '';
            while ($number > 0) {
                $n = $number % $base;
                $out = $n . $out;
                $number = floor($number / $base);
            }
            return $out;
        case 11:
        case 12:
        case 13:
        case 14:
        case 15:
        case 16:
        case 17:
        case 18:
        case 19:
        case 20:
        case 21:
        case 22:
        case 23:
        case 24:
        case 25:
        case 26:
        case 27:
        case 28:
        case 29:
        case 30:
        case 31:
        case 32:
        case 33:
        case 34:
        case 35:
        case 36:
            $array = array('0','1','2','3','4','5','6','7','8','9','a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z');
            $out = '';
            while ($number > 0) {
                $n = $number % $base;
                $out = $array[$n] . $out;
                $number = floor($number / $base);
            }
            return $out;
        default:
            if ($base <= 256) {
                $out = '';
                while ($number > 0) {
                    $n = $number % $base;
                    $out = chr($n) . $out;
                    $number = floor($number / $base);
                }
                return $out;
            } else {
                die('Invalid Base');
            }
    }
}    
link|improve this answer
1  
Yay for the epic switch statement. Can you believe some languages (eg Perl before 5.10) don't even have one but have to use if/else?! And who can argue with standardizing on base 1. – Nathan Jan 21 '11 at 18:35
3  
c'mon now, you're falling through your switch when that could have been repeated code! Put your heart into it, man! – Andrew Heath Jan 24 '11 at 8:32
@Andrew: I wanted to keep some level of realism that you might find something like this in the real world. – ircmaxell Jan 24 '11 at 17:20
feedback

Here one in C++:

#include <iostream>

int main( )
{
    short a, b;
    short r1, r2;

    std::cin >> a;
    std::cin >> b;

    r1 = 0;
    for( int i = a+1; i != a; ++ i ) {
        r1 += i;
    }

    r2 = 0;
    for( int i = b+1; i != b; ++ i ) {
        r2 += i;
    }

    std::cout << -( r1 + r2 ) << std::endl;

    return 0;
}

Only short numbers (-64K, +64K-1) are supported :-(

link|improve this answer
+1 because you made it run in constant time! – Thomas Jan 22 '11 at 10:50
feedback

Someting rather simple as a first shot

#!/bin/bash

a=$1
b=$2

mkdir /tmp/cB
mkdir /tmp/cB/p
mkdir /tmp/cB/n
rm /tmp/cB/p/*
rm /tmp/cB/n/*


while [ "$a" -gt 0 ]
do
    touch "/tmp/cB/p/$RANDOM";
    (( --a ))
done

while [ "$b" -gt 0 ]
do
    touch "/tmp/cB/p/$RANDOM";
    (( --b ))
done

while [ "$a" -lt 0 ]
do
    touch "/tmp/cB/n/$RANDOM";
    (( ++a ))
done

while [ "$b" -lt 0 ]
do
    touch "/tmp/cB/n/$RANDOM";
    (( ++b ))
done

let r=`ls /tmp/cB/p/ | wc -l`-`ls /tmp/cB/n/ | wc -l`

echo $r

Usage:

./codeBowling.sh 3 -4
-1
link|improve this answer
feedback

I would like to add some Real AI/Recursion!!! to my function and deliver the result by doing the process exactly the opposite (my +key is stuck). It does what it does, in a while.....

Isn't that a nice small tiny function?

**javascript:**

var Sum = function (a,b){
   var result = Math.round(Math.random() * (a === 0 ? 1 : a) *  (b === 0 ? 1 : b) ); 
   return result - a === b ? result : Sum(a, b);
}
link|improve this answer
Just curious, have you gotten this to work on any JavaScript implementation? It would need tail-call optimization, obviously. – Joey Adams Jan 23 '11 at 19:55
did a minor update... (spent too much tweaking before...) – Caspar Kleijne Jan 23 '11 at 20:22
feedback

I summoned my inner physicist, and he provided me with the following solution:

/* Adds integers. Only works up to around where the sum is 15. */

#include <stdlib.h>
#include <stdio.h>

#define PREC 10000000

int main(int argc, char *argv[]) {
    int a, b;
    double p = 1.0 + 1.0/PREC;
    long long iter = 0;
    double res = p*p;
    double res2 = p*p;
    double dx;

    if(argc == 3) {
        a =atoi(argv[1]);
        b =atoi(argv[2]);
    } else {
        fprintf(stderr, "Does not compute!");
    }

    for(iter = 2; iter < PREC*a;) {
        if(iter*iter < PREC*a) {
            res = res * res; 
            iter *= 2;
        } else break;
    }
    for(; iter < PREC*a; iter++)
        res *= p;
    for(iter = 2; iter < PREC*b;) {
        if(iter*iter < PREC*b) {
            res2 = res2 * res2; 
            iter *= 2;
        } else break;
    }
    for(iter = 1; iter < PREC*b; iter++)
        res2 *= p;
    res = res*res2;
    dx = (res - 1) / (PREC);
    res = 0;
    for(iter = 0; iter < PREC; iter++) {
        res += dx * 1.0 / (1.0+iter*dx);
    }
    printf("%f\n", res);

    return EXIT_SUCCESS;

}
link|improve this answer
What it actually does is calculate log(exp(a)*(exp(b)) by using the rule that e~= (1+1/n)^n for large values n, and that the integral of 1/x is the natural logarithm (calculated numerically, of course). – YSN Jan 22 '11 at 17:47
feedback

Here's a quite.. Exceptional way of adding two numbers. Input is assumed to be positive. There's a fun "feature" in there also.

using System;
public class awesome
{
    public static int sum(int a, int b)
    {
        return rsum(0, a, b);
    }

    public static int rsum(int x, int a, int b)
    {
        if (a > b)
        {
            a ^= b;
            b ^= a;
            a ^= b;
        }

        try
        {
            int d = 1 / b;
            return rsum(x + 1, a, b - 1);
        }
        catch
        {
            return x;
        }
    }

    public static void Main(String[] args)
    {
        int a = int.Parse(args[0]);
        int b = int.Parse(args[1]);

        Console.WriteLine(sum(a, b));
    }
}
link|improve this answer
feedback
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#define max(a, b) ( ((a) > (b)) ? (a) : (b) )

int main(int argc, char **argv)
{
    if(argc != 3)
    {
        fprintf(stderr, "Usage: %s num1 num2\n", argv[0]);
        exit(1);
    }

    int sumlength = max(strlen(argv[1]), strlen(argv[2])) + 3;
    char *sumtenh = malloc(sumlength);
    char *sumten = sumtenh;

    char *firstten, *secondten;
    firstten = argv[1];
    secondten = argv[2];
    while(*firstten)
    {
        if(*firstten < '0' || *firstten > '9')
        {
            fprintf(stderr, "Numbers only, please.\n");
            exit(1);
        }
        firstten++;
    }
    while(*secondten)
    {
        if(*secondten < '0' || *secondten > '9')
        {
            fprintf(stderr, "Numbers only, please.\n");
            exit(1);
        }
        secondten++;
    }
    sumten += sumlength - 1;
    *sumten = '\0';

    char carry = '0';
    while(1)
    {
        sumten--;
        *sumten = '0';
        if(firstten > argv[1])
        {
            firstten--;
            *sumten += *firstten - '0';
        }
        if(secondten > argv[2])
        {
            secondten--;
            *sumten += *secondten - '0';
        }
        *sumten += carry - '0';
        carry = '0';
        while(*sumten > '9')
        {
            *sumten -= 10;
            carry += 1;
        }
        if(firstten == argv[1] && secondten == argv[2] && carry == '0' && *sumten == '0')
            break;
    }
    sumten++;
    printf("%s\n", sumten);
    return 0;
}

This implementation uses long addition, performed in strings. As such, only non-negative integers are allowed (however, extension to decimals wouldn't be too tough). For consistency's sake, the carry is also stored as a char. Note that this does infinite-precision addition. However, the sum is never stored in computer-readable integer format. At all stages it is stored as a string.

link|improve this answer
1  
You got a +1 for doing it in base 10. If you'd done it in base 2^30 or something to that effect, it could have actually been gasp efficient. That wouldn't do in code bowling at all! – YSN Jan 28 '11 at 13:14
Also I believe this could be fairly easily extended to adding as many numbers as necessary. – Aaron Dufour Jan 28 '11 at 15:13
feedback

Using push/shift in JavaScript to count numbers. Adds integers only.

var a = prompt('Enter a number'),
    b = prompt('Enter another number'),
    negatives = [],
    positives = [];

a = parseInt(a, 10);
b = parseInt(b, 10);

if (a < 0)
{
    for (i = 0; i > a; i--)
    {
        negatives.push(1);
    }
}
else
{
    for (i = 0; i < a; i++)
    {
        positives.push(1)
    }
}

if (b < 0)
{
    for (i = 0; i > b; i--)
    {
        if (positives.length > 0)
        {
            positives.shift();
        }
        else
        {
            negatives.push(1);
        }
    }
}
else
{
    for (i = 0; i < b; i++)
    {
        if (negatives.length > 0)
        {
            negatives.shift();
        }
        else
        {
            positives.push(1);
        }
    }
}

if (negatives.length === 0 && positives.length === 0)
{
    alert(0);
}
else if (positives.length === 0)
{
    alert(negatives.length * -1);
}
else if (negatives.length === 0)
{
    alert(positives.length);
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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