Showing posts with label summation in c#. Show all posts
Showing posts with label summation in c#. Show all posts

Thursday, October 27, 2016

Summation in C#

Here is a very simple program that I wrote using C# programming language using console application that will ask the user to give a series of numbers and then it will perform summation of values based on the given  number by the user. The code is very short and easy to understand.  Thank you.

Add me at Facebook my address is jakerpomperada@gmail.com and jakerpomperada@yahoo.com. 

My email address are the following jakerpomperada@gmail.com and jakerpomperada@yahoo.com. 

My mobile number here in the Philippines is 09173084360.


Sample Program Output

Program Listing

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

namespace running_sum
{
    class running_sum
    {
        static void Main(string[] args)
        {
            int[] values = new int[6];
            int sum = 0;
            Console.Write("Running Sum Program");
            Console.Write("\n\n");

            for (int a = 1; a <= 5; a++)
            {
                Console.Write("\n");
                Console.Write("Enter value in item no. {0} : ", a);
                values[a] = Convert.ToInt32(Console.ReadLine());
                sum += values[a];
                Console.Write("\n");
                Console.Write("The running sum of values is {0}.", sum);
                Console.Write("\n");
            }
             
            Console.Write("\n\n");
            Console.Write("End of Program.");
            Console.Write("\n\n");
            Console.ReadLine();
        }
    }
}