C# Program - Sum of n numbers | Digital Infotainment

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            int i=1,n,sum=0;
            Console.Write("Enter a number");
            n = int.Parse(Console.ReadLine());
            while(i<=n)
            {
                sum = sum + i;
                i++;
            }
            Console.Write("The of the numbers is:" + sum);
            Console.ReadKey();
        }
    }
}

/*Do leave a comment if you find this useful*/

No comments:

Post a Comment