Archive

Archive for March, 2008

Adding two numbers without using the + Operator

March 27th, 2008

This is pretty easy to accomplish as Minus Minus maketh plus.

int A = 10;
int B = 5;
Console.WriteLine(A - -B);
Console.Read();

Google