[C#] Sum of first x natural numbers

Join the discussion
Registration is free. Start your own thread to ask a follow-up.
13 replies · 5K views
adjacent
Gold Member
Messages
1,552
Reaction score
62
I am writing this in C#. Here is the code.
Code:
using System;

namespace ConsoleApplication3
{
    class Program
    {
        static void Main(string[] args)
        {
            
            int sum = 0;
            int uservalue;
            Int32.TryParse(Console.ReadLine(),out uservalue);
            for (int i = 0;i <= uservalue;i++)
            {
                sum += i;
            }
                Console.WriteLine("Sum of the Natural numbers from 0 to {1} is:{0}",sum,uservalue);
                Console.ReadLine();
                Console.ReadLine();
        }
    }
}
Problems;
  1. If I write 100 in the console, it assumes that I wrote 57 :confused:
  2. How do I make it possible for the user to write and calculate the sum as much as he/she wants? I wrote two Console.ReadLines there. So it allows me to write only one number, after getting that string, if I write another number, the console closes :confused:
 
Last edited:
Physics news on Phys.org
Have you checked docs? What does Console.Read() return?

No idea why 57, I would expect 49.

Then

[tex]\sum_{i=1}^n i= \frac {n(n+1)}2[/tex]
 
Borek said:
Have you checked docs? What does Console.Read() return?

No idea why 57, I would expect 49.
Oh, I got it.
The code is now updated,but still, I don't know how to solve problem 2 :confused:
Borek said:
Then

[tex]\sum_{i=1}^n i= \frac {n(n+1)}2[/tex]
Yes, I know this. However, I want to learn how to do it the long way :smile:
 
The most obvious approach - loop that ends on a particular input.
 
Borek said:
The most obvious approach - loop that ends on a particular input.

I have found something : While(true)
{

}
I put all my code into this and it's alright

I have noticed that large numbers return absurd results, for example, if I write 10000000, it returns -2004260032 . Absurd.
 
This is my code now
Code:
using System;

namespace ConsoleApplication3
{
    class Program
    {
        static void Main(string[] args)
        {
            int uservalue;
            int sum = 0;
            Console.WriteLine("Calculate the Sum of Natural numbers from 0 to your number");
            Console.WriteLine("----");
            while(true)
            {
                Console.Write("Enter Number:");
                Int32.TryParse(Console.ReadLine(),out uservalue);
                if(uservalue==0)
                {
                    Console.WriteLine("Invalid Number");
                }
                else
                {
                    for (int i = 0; i <= uservalue; i++)
                        {
                            sum += i;
                        }
                    Console.WriteLine("Sum of the Natural numbers from 0 to {1} is:{0}", sum, uservalue);
                    sum = 0;
                }    
                
            }
            
        }
    }
}
 
adjacent said:
I have noticed that large numbers return absurd results, for example, if I write 10000000, it returns -2004260032 . Absurd.

What are limits to the value that can be stored in a signed, 32 bit int?
 
borek said:
what are limits to the value that can be stored in a signed, 32 bit int?
##2^{32}\text{ Which is equal to }4294967296##
 
Your "while(true)" loop is an "infinite loop", that is, you presumably have to do something like control-C to abort it when you don't want to find any more sums. You might want to consider how to end the program more "gracefully" from the user's point of view.
 
adjacent said:
##2^{32}\text{ Which is equal to }4294967296##

That's actually wrong, you missed the "signed" part, but even if it were correct - what is the expected sum of numbers up to 10000000?
 
jtbell said:
Your "while(true)" loop is an "infinite loop", that is, you presumably have to do something like control-C to abort it when you don't want to find any more sums. You might want to consider how to end the program more "gracefully" from the user's point of view.
The user can click on the cross to finish it :smile:
 
Borek said:
That's actually wrong, you missed the "signed" part, but even if it were correct - what is the expected sum of numbers up to 10000000?
Oh it's 2,147,483,647 and -2,147,483,647

Sum of natural numbers up to 10000000 is ##5.0000005 \times 10^{13}##
 
adjacent said:
Oh it's 2,147,483,647 and -2,147,483,647

Sum of natural numbers up to 10000000 is ##5.0000005 \times 10^{13}##

And you still don't see where the problem is?