Thursday, April 18, 2013

Program to Add two 50 digit numbers in C#

Output is:


1 comment:

  1. BigInteger a, b, c;
    a = BigInteger.Parse(textBox1.Text);
    b = BigInteger.Parse(textBox2.Text);
    c = a + b;
    textBox3.Text = c.ToString();

    ReplyDelete